Last active
February 3, 2019 03:22
-
-
Save answerquest/b6e21a7545f85c64a815dfcb43523d82 to your computer and use it in GitHub Desktop.
3.2.19 break large pmpml gps logs dataset (2019-01-19 16:00 to 2019-01-27 18:00 IST) by route_id, vehicle_id
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "cells": [ | |
| { | |
| "cell_type": "code", | |
| "execution_count": 1, | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "import pandas as pd\n", | |
| "import os\n", | |
| "from collections import OrderedDict" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 2, | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "bigFile = 'pmpml_gpslogs_19.1.19_4pm_to_27.1.19_6pm.tar.gz'\n", | |
| "outputFolder = 'output/'" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 3, | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "# create output folder if it doesn't exist\n", | |
| "if not os.path.exists(outputFolder):\n", | |
| " os.makedirs(outputFolder)\n", | |
| "# note : this program APPENDS if target file already exists. \n", | |
| "# So if doing a re-run, delete all the outputs from previous runs, else you'll have repeating data." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 4, | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "df = pd.read_csv(bigFile, chunksize=1000000, dtype=str, compression='gzip')\n", | |
| "# no need of decompressing the data : pandas can read .tar.gz directly, and the performance is better too :\n", | |
| "# for .csv, chunksize of .5 million was optimal, 1 million was too slow for my machine\n", | |
| "# for .tar.gz, chunkzise of 1 million happening at same speed" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 5, | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "def writeOrAppend(filterDF, targetFile):\n", | |
| " if os.path.exists(targetFile):\n", | |
| " # if it exists from previous chunk run, then just append, don't write header\n", | |
| " filterDF.to_csv(targetFile, mode='a',header=False,index=False)\n", | |
| " print('Appended to {}, {} entries.'.format(targetFile,len(filterDF)))\n", | |
| " else:\n", | |
| " # fresh file, write normally\n", | |
| " filterDF.to_csv(targetFile, index=False)\n", | |
| " print('Created {}, {} entries.'.format(targetFile,len(filterDF)))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 6, | |
| "metadata": { | |
| "scrolled": true | |
| }, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Routes: ['165', '213', '305', '207', '80', '94', '144', '24', '162', '146', '145A', '142', '30', '103', '312', '145', '11', '71', '187', '358', '372', '284', 'VJR3', '85', '42', '7A', '181C', '37', '158', '168', '5', '301', '317', '123', '256', '197', '376', '119', '202', '298', '152', '201', '121', '140', '143', '78', 'VJR2', '167', '109', '174', '186', '64', '111', '55', '340', '322', '59', '56', '309', '367', '203P', '13', '192', '368', '118', '279', '180', '163', '159', '348', '52', '57', '19D', '2', '181', '169', '12', '360', '110', '316', '315', '120', '126', '87F', '203', '139', '337', '188', '31', '215', '313', '191', '177', '133', '206', '100', '19', '326', '155', '282', '84', '154', '204', '303', '149', '135', '38', '357', '264', '63', '331', '29', '170', '22', '314', '291', '361', '281', '148', '208', '205', '302A(New)', '332', '190', '101', '369', '216', '327', 'VJR1', 'VJR4', '114', '501', '87', '22A', '336', '359', '354', '297', '209', '276', '299', '195', '76', '50B', '27', '41', '108', '43', '310', '277A', '14', '175', '58', '122', '117', '53', '327A', '186A', '97', '19A', '151', '189', '102', '257', '69', 'VJR6', '57A', '115P', '50', '128', '366', '70A', '304', '148A', '117A', '158A(NEW)', '125', '67', '346', '305B', '328', '324', '323B', '379', '85A', '36', '302B', '118B', '374', 'VJR5', '292', '343', '10', '302', '87D', '72', '295', '355', '341', '33', '333', '136', '87C', '68S', '335A', '302D', '77', '363A', '141', '367C', '363', '166', '52A', '107', '51', '237', '347', '304A', '234', '217', '13A', '91']\n", | |
| "Created output/by_route/165.csv, 1798 entries.\n", | |
| "Created output/by_route/213.csv, 238 entries.\n", | |
| "Created output/by_route/305.csv, 17078 entries.\n", | |
| "Created output/by_route/207.csv, 15264 entries.\n", | |
| "Created output/by_route/80.csv, 812 entries.\n", | |
| "Created output/by_route/94.csv, 10367 entries.\n", | |
| "Created output/by_route/144.csv, 4152 entries.\n", | |
| "Created output/by_route/24.csv, 11456 entries.\n", | |
| "Created output/by_route/162.csv, 2390 entries.\n", | |
| "Created output/by_route/146.csv, 12445 entries.\n", | |
| "Created output/by_route/145A.csv, 895 entries.\n", | |
| "Created output/by_route/142.csv, 2414 entries.\n", | |
| "Created output/by_route/30.csv, 7350 entries.\n", | |
| "Created output/by_route/103.csv, 16985 entries.\n", | |
| "Created output/by_route/312.csv, 8583 entries.\n", | |
| "Created output/by_route/145.csv, 1807 entries.\n", | |
| "Created output/by_route/11.csv, 10974 entries.\n", | |
| "Created output/by_route/71.csv, 2709 entries.\n", | |
| "Created output/by_route/187.csv, 11914 entries.\n", | |
| "Created output/by_route/358.csv, 33541 entries.\n", | |
| "Created output/by_route/372.csv, 4554 entries.\n", | |
| "Created output/by_route/284.csv, 6784 entries.\n", | |
| "Created output/by_route/VJR3.csv, 3573 entries.\n", | |
| "Created output/by_route/85.csv, 1507 entries.\n", | |
| "Created output/by_route/42.csv, 27247 entries.\n", | |
| "Created output/by_route/7A.csv, 5128 entries.\n", | |
| "Created output/by_route/181C.csv, 12527 entries.\n", | |
| "Created output/by_route/37.csv, 5536 entries.\n", | |
| "Created output/by_route/158.csv, 7875 entries.\n", | |
| "Created output/by_route/168.csv, 7882 entries.\n", | |
| "Created output/by_route/5.csv, 38597 entries.\n", | |
| "Created output/by_route/301.csv, 14581 entries.\n", | |
| "Created output/by_route/317.csv, 4575 entries.\n", | |
| "Created output/by_route/123.csv, 12093 entries.\n", | |
| "Created output/by_route/256.csv, 14808 entries.\n", | |
| "Created output/by_route/197.csv, 6568 entries.\n", | |
| "Created output/by_route/376.csv, 9141 entries.\n", | |
| "Created output/by_route/119.csv, 2928 entries.\n", | |
| "Created output/by_route/202.csv, 9797 entries.\n", | |
| "Created output/by_route/298.csv, 3166 entries.\n", | |
| "Created output/by_route/152.csv, 2257 entries.\n", | |
| "Created output/by_route/201.csv, 8222 entries.\n", | |
| "Created output/by_route/121.csv, 2683 entries.\n", | |
| "Created output/by_route/140.csv, 6426 entries.\n", | |
| "Created output/by_route/143.csv, 7147 entries.\n", | |
| "Created output/by_route/78.csv, 4978 entries.\n", | |
| "Created output/by_route/VJR2.csv, 4772 entries.\n", | |
| "Created output/by_route/167.csv, 4264 entries.\n", | |
| "Created output/by_route/109.csv, 6618 entries.\n", | |
| "Created output/by_route/174.csv, 4736 entries.\n", | |
| "Created output/by_route/186.csv, 2901 entries.\n", | |
| "Created output/by_route/64.csv, 10407 entries.\n", | |
| "Created output/by_route/111.csv, 12077 entries.\n", | |
| "Created output/by_route/55.csv, 5736 entries.\n", | |
| "Created output/by_route/340.csv, 1405 entries.\n", | |
| "Created output/by_route/322.csv, 7259 entries.\n", | |
| "Created output/by_route/59.csv, 10752 entries.\n", | |
| "Created output/by_route/56.csv, 8062 entries.\n", | |
| "Created output/by_route/309.csv, 12236 entries.\n", | |
| "Created output/by_route/367.csv, 9354 entries.\n", | |
| "Created output/by_route/203P.csv, 240 entries.\n", | |
| "Created output/by_route/13.csv, 7948 entries.\n", | |
| "Created output/by_route/192.csv, 3481 entries.\n", | |
| "Created output/by_route/368.csv, 13044 entries.\n", | |
| "Created output/by_route/118.csv, 4123 entries.\n", | |
| "Created output/by_route/279.csv, 3683 entries.\n", | |
| "Created output/by_route/180.csv, 8843 entries.\n", | |
| "Created output/by_route/163.csv, 3435 entries.\n", | |
| "Created output/by_route/159.csv, 2006 entries.\n", | |
| "Created output/by_route/348.csv, 9418 entries.\n", | |
| "Created output/by_route/52.csv, 5319 entries.\n", | |
| "Created output/by_route/57.csv, 5964 entries.\n", | |
| "Created output/by_route/19D.csv, 270 entries.\n", | |
| "Created output/by_route/2.csv, 15517 entries.\n", | |
| "Created output/by_route/181.csv, 2752 entries.\n", | |
| "Created output/by_route/169.csv, 8150 entries.\n", | |
| "Created output/by_route/12.csv, 3475 entries.\n", | |
| "Created output/by_route/360.csv, 1027 entries.\n", | |
| "Created output/by_route/110.csv, 3814 entries.\n", | |
| "Created output/by_route/316.csv, 393 entries.\n", | |
| "Created output/by_route/315.csv, 3882 entries.\n", | |
| "Created output/by_route/120.csv, 7751 entries.\n", | |
| "Created output/by_route/126.csv, 5359 entries.\n", | |
| "Created output/by_route/87F.csv, 6223 entries.\n", | |
| "Created output/by_route/203.csv, 9871 entries.\n", | |
| "Created output/by_route/139.csv, 11534 entries.\n", | |
| "Created output/by_route/337.csv, 1075 entries.\n", | |
| "Created output/by_route/188.csv, 609 entries.\n", | |
| "Created output/by_route/31.csv, 13468 entries.\n", | |
| "Created output/by_route/215.csv, 6653 entries.\n", | |
| "Created output/by_route/313.csv, 3 entries.\n", | |
| "Created output/by_route/191.csv, 3672 entries.\n", | |
| "Created output/by_route/177.csv, 13744 entries.\n", | |
| "Created output/by_route/133.csv, 2849 entries.\n", | |
| "Created output/by_route/206.csv, 649 entries.\n", | |
| "Created output/by_route/100.csv, 828 entries.\n", | |
| "Created output/by_route/19.csv, 15328 entries.\n", | |
| "Created output/by_route/326.csv, 2731 entries.\n", | |
| "Created output/by_route/155.csv, 13674 entries.\n", | |
| "Created output/by_route/282.csv, 3554 entries.\n", | |
| "Created output/by_route/84.csv, 5137 entries.\n", | |
| "Created output/by_route/154.csv, 1416 entries.\n", | |
| "Created output/by_route/204.csv, 2470 entries.\n", | |
| "Created output/by_route/303.csv, 4839 entries.\n", | |
| "Created output/by_route/149.csv, 2507 entries.\n", | |
| "Created output/by_route/135.csv, 5379 entries.\n", | |
| "Created output/by_route/38.csv, 3780 entries.\n", | |
| "Created output/by_route/357.csv, 4127 entries.\n", | |
| "Created output/by_route/264.csv, 742 entries.\n", | |
| "Created output/by_route/63.csv, 5439 entries.\n", | |
| "Created output/by_route/331.csv, 3473 entries.\n", | |
| "Created output/by_route/29.csv, 13260 entries.\n", | |
| "Created output/by_route/170.csv, 3817 entries.\n", | |
| "Created output/by_route/22.csv, 3481 entries.\n", | |
| "Created output/by_route/314.csv, 3901 entries.\n", | |
| "Created output/by_route/291.csv, 7183 entries.\n", | |
| "Created output/by_route/361.csv, 3359 entries.\n", | |
| "Created output/by_route/281.csv, 2921 entries.\n", | |
| "Created output/by_route/148.csv, 9382 entries.\n", | |
| "Created output/by_route/208.csv, 14156 entries.\n", | |
| "Created output/by_route/205.csv, 4804 entries.\n", | |
| "Created output/by_route/302A(New).csv, 748 entries.\n", | |
| "Created output/by_route/332.csv, 2993 entries.\n", | |
| "Created output/by_route/190.csv, 229 entries.\n", | |
| "Created output/by_route/101.csv, 1617 entries.\n", | |
| "Created output/by_route/369.csv, 2736 entries.\n", | |
| "Created output/by_route/216.csv, 4150 entries.\n", | |
| "Created output/by_route/327.csv, 2381 entries.\n", | |
| "Created output/by_route/VJR1.csv, 7122 entries.\n", | |
| "Created output/by_route/VJR4.csv, 4072 entries.\n", | |
| "Created output/by_route/114.csv, 230 entries.\n", | |
| "Created output/by_route/501.csv, 2979 entries.\n", | |
| "Created output/by_route/87.csv, 6811 entries.\n", | |
| "Created output/by_route/22A.csv, 633 entries.\n", | |
| "Created output/by_route/336.csv, 5992 entries.\n", | |
| "Created output/by_route/359.csv, 1667 entries.\n", | |
| "Created output/by_route/354.csv, 6249 entries.\n", | |
| "Created output/by_route/297.csv, 1352 entries.\n", | |
| "Created output/by_route/209.csv, 1124 entries.\n", | |
| "Created output/by_route/276.csv, 4588 entries.\n", | |
| "Created output/by_route/299.csv, 1148 entries.\n", | |
| "Created output/by_route/195.csv, 1688 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Created output/by_route/76.csv, 2827 entries.\n", | |
| "Created output/by_route/50B.csv, 652 entries.\n", | |
| "Created output/by_route/27.csv, 6502 entries.\n", | |
| "Created output/by_route/41.csv, 661 entries.\n", | |
| "Created output/by_route/108.csv, 3406 entries.\n", | |
| "Created output/by_route/43.csv, 4847 entries.\n", | |
| "Created output/by_route/310.csv, 1220 entries.\n", | |
| "Created output/by_route/277A.csv, 530 entries.\n", | |
| "Created output/by_route/14.csv, 244 entries.\n", | |
| "Created output/by_route/175.csv, 818 entries.\n", | |
| "Created output/by_route/58.csv, 2672 entries.\n", | |
| "Created output/by_route/122.csv, 1235 entries.\n", | |
| "Created output/by_route/117.csv, 8009 entries.\n", | |
| "Created output/by_route/53.csv, 3911 entries.\n", | |
| "Created output/by_route/327A.csv, 111 entries.\n", | |
| "Created output/by_route/186A.csv, 574 entries.\n", | |
| "Created output/by_route/97.csv, 1504 entries.\n", | |
| "Created output/by_route/19A.csv, 185 entries.\n", | |
| "Created output/by_route/151.csv, 3938 entries.\n", | |
| "Created output/by_route/189.csv, 1834 entries.\n", | |
| "Created output/by_route/102.csv, 593 entries.\n", | |
| "Created output/by_route/257.csv, 611 entries.\n", | |
| "Created output/by_route/69.csv, 4427 entries.\n", | |
| "Created output/by_route/VJR6.csv, 996 entries.\n", | |
| "Created output/by_route/57A.csv, 2135 entries.\n", | |
| "Created output/by_route/115P.csv, 24 entries.\n", | |
| "Created output/by_route/50.csv, 497 entries.\n", | |
| "Created output/by_route/128.csv, 3033 entries.\n", | |
| "Created output/by_route/366.csv, 79 entries.\n", | |
| "Created output/by_route/70A.csv, 3125 entries.\n", | |
| "Created output/by_route/304.csv, 4607 entries.\n", | |
| "Created output/by_route/148A.csv, 469 entries.\n", | |
| "Created output/by_route/117A.csv, 1295 entries.\n", | |
| "Created output/by_route/158A(NEW).csv, 279 entries.\n", | |
| "Created output/by_route/125.csv, 3659 entries.\n", | |
| "Created output/by_route/67.csv, 563 entries.\n", | |
| "Created output/by_route/346.csv, 1360 entries.\n", | |
| "Created output/by_route/305B.csv, 1219 entries.\n", | |
| "Created output/by_route/328.csv, 1591 entries.\n", | |
| "Created output/by_route/324.csv, 89 entries.\n", | |
| "Created output/by_route/323B.csv, 230 entries.\n", | |
| "Created output/by_route/379.csv, 877 entries.\n", | |
| "Created output/by_route/85A.csv, 162 entries.\n", | |
| "Created output/by_route/36.csv, 267 entries.\n", | |
| "Created output/by_route/302B.csv, 96 entries.\n", | |
| "Created output/by_route/118B.csv, 910 entries.\n", | |
| "Created output/by_route/374.csv, 468 entries.\n", | |
| "Created output/by_route/VJR5.csv, 146 entries.\n", | |
| "Created output/by_route/292.csv, 271 entries.\n", | |
| "Created output/by_route/343.csv, 1522 entries.\n", | |
| "Created output/by_route/10.csv, 2174 entries.\n", | |
| "Created output/by_route/302.csv, 2945 entries.\n", | |
| "Created output/by_route/87D.csv, 464 entries.\n", | |
| "Created output/by_route/72.csv, 367 entries.\n", | |
| "Created output/by_route/295.csv, 309 entries.\n", | |
| "Created output/by_route/355.csv, 2480 entries.\n", | |
| "Created output/by_route/341.csv, 73 entries.\n", | |
| "Created output/by_route/33.csv, 89 entries.\n", | |
| "Created output/by_route/333.csv, 69 entries.\n", | |
| "Created output/by_route/136.csv, 157 entries.\n", | |
| "Created output/by_route/87C.csv, 12 entries.\n", | |
| "Created output/by_route/68S.csv, 1040 entries.\n", | |
| "Created output/by_route/335A.csv, 236 entries.\n", | |
| "Created output/by_route/302D.csv, 344 entries.\n", | |
| "Created output/by_route/77.csv, 2 entries.\n", | |
| "Created output/by_route/363A.csv, 216 entries.\n", | |
| "Created output/by_route/141.csv, 1784 entries.\n", | |
| "Created output/by_route/367C.csv, 551 entries.\n", | |
| "Created output/by_route/363.csv, 250 entries.\n", | |
| "Created output/by_route/166.csv, 3365 entries.\n", | |
| "Created output/by_route/52A.csv, 175 entries.\n", | |
| "Created output/by_route/107.csv, 258 entries.\n", | |
| "Created output/by_route/51.csv, 981 entries.\n", | |
| "Created output/by_route/237.csv, 795 entries.\n", | |
| "Created output/by_route/347.csv, 890 entries.\n", | |
| "Created output/by_route/304A.csv, 32 entries.\n", | |
| "Created output/by_route/234.csv, 830 entries.\n", | |
| "Created output/by_route/217.csv, 261 entries.\n", | |
| "Created output/by_route/13A.csv, 98 entries.\n", | |
| "Created output/by_route/91.csv, 701 entries.\n", | |
| "Vehicles: ['R480', 'R505', '909', '937', '1001', '1002', '1015', '1075', '1148', '1149', '1202', '1205', '1206', '1217', '1219', '1226', '1230', '1244', '1249', '1253', '1291', '1447', '1450', '1465', '1470', '1471', '1564', '1565', '1571', '1578', '1661', '1714', '1720', '1785', 'CNG01', 'CNG20', 'CNG27', 'CNG57', 'CNG72', '1664', 'CNG437', 'CNG124', 'CNG309', '1124', 'CNG583', 'CNG476', 'CNG469', 'CNG164', 'CNG585', 'CNG529', 'R501', 'CNG321', 'CNG477', 'R615', 'R274', 'CNG456', '1246', '1535', 'CNG147', '1713', '1724', '1214', 'P179', 'CNG510', '1102', '1740', 'CNG25', '1278', '1293', 'CNG216', 'CNG396', '563', '558', '577', '574', '564', '582', '605', '607', '583', '586', '629', '618', '616', '694', '712', '595', '666', '597', '601', '722', '735', '1267', '488', 'CNG338', 'R427', 'R336', 'R599', '949', '956', '1028', '1207', '1262', '1474', '1534', '1536', '1738', 'CNG47', 'CNG62', 'R594', 'CNG567', 'CNG569', 'CNG552', 'CNG452', 'CNG145', 'CNG432', 'CNG449', 'CNG554', 'CNG36', 'CNG221', 'CNG555', '1569', 'CNG218', '1223', 'R626', 'CNG511', '1695', 'CNG366', '560', '602', '590', '653', 'R352', '1113', '1280', '1449', '1524', '1747', 'CNG421', 'CNG551', 'CNG350', '1107', 'CNG370', 'R490', '1757', 'CNG135', 'P267', 'P265', 'CNG363', 'R364', '1184', '1687', '1806', '1680', '1140', 'R366', 'CNG580', '1021', 'CNG362', '1621', 'CNG331', '732', 'CNG562', 'CNG217', '610', '1264', '1662', 'R439', '1756', 'CNG12', 'CNG73', '670', '608', '1255', 'P247', 'R645', '1802', 'CNG40', '641', '639', '1706', 'CNG475', 'R292', '652', '1210', 'CNG530', '998', 'CNG150', '1690', '1588', '606', '1172', '1618', '1000', 'CNG19', 'CNG91', '1671', 'R241', '1498', 'CNG428', '1803', '603', '1276', '1589', '1114', '1567', 'CNG343', '1712', '1444', 'CNG229', '1014', '730', 'CNG454', '1667', '1224', '1446', '1795', '1675', '751', 'R606', '1579', 'R436', '1765', '1800', 'CNG494', '554', '578', '1277', 'CNG460', 'CNG214', '1062', 'R392', 'CNG210', 'CNG549', '576', '617', '1566', 'CNG325', 'CNG496', 'CNG534', 'CNG07', '1241', '1555', 'CNG550', 'CNG573', '893', '903', 'CNG08', 'CNG44', '947', '974', '726', '1294', '710', 'R631', 'R370', '1238', '1783', '1011', '633', 'CNG443', '657', '742', '939', '1692', 'R368', 'CNG111', '1577', 'R642', 'CNG101', '1743', 'CNG482', '562', '953', '1725', '1273', 'R252', '1476', 'R234', '1473', '1101', '1784', '1142', '746', '1191', 'CNG435', 'CNG83', '1543', 'R269', '1745', '1723', '1268', '1175', 'CNG228', '1169', 'R653', 'R635', 'CNG252', '1808', 'R481', '734', '962', '1677', 'R237', '1598', '665', '1477', '1274', '755', 'CNG80', 'R573', '975', '915', 'R634', '1755', '723', '1482', '1767', '965', 'R232', 'P195', '1616', '584', '1162', 'CNG414', 'R06', 'CNG324', '1006', 'CNG43', '1116', '706', 'CNG541', '677', '1594', '981', 'CNG232', '1209', '1526', 'R216', 'CNG582', 'R231', '621', 'R511', '1676', '703', 'R398', '748', 'R641', 'CNG441', '1192', '1580', '754', 'R434', 'R471', 'P198', 'R591', 'CNG31', 'R309', 'R357', 'R414', '1726', 'R282', '1781', 'CNG139', 'CNG444', 'R244', '1242', '1054', 'R367', '556', '1570', '944', '1069', '1619', 'CNG39', '1128', 'CNG49', 'CNG34', 'CNG315', '623', '1196', 'R182', '609', 'CNG543', 'R613', 'R514', '644', 'R379', '648', 'R651', '1284', 'R476', '1560', 'R608', 'CNG54', 'P182', 'CNG32', 'CNG519', '667', 'R114', '587', 'R639', 'CNG575', 'R239', '1586', 'R384', '622', 'CNG548', 'CNG33', '614', 'R260', 'CNG71', '631', 'R570', 'CNG531', 'R429', 'R578', 'R621', 'CNG500', '702', '569', '557', 'R600', 'R517', 'R224', '942', '1792', '749', '1481', '573', 'CNG385', '1793', 'R474', 'R609', '624', 'CNG465', 'R354', '638', 'R259', '589', 'R320', 'CNG317', '659', 'CNG422', '642', 'R17', 'R630', '747', 'R431', 'R311', 'R424', 'R425', 'R596', '650', '654', 'R369', '916', '1611', '596', 'R397', '745', '1005', 'P262', '681', 'R487', 'R544', 'P168', 'R577', 'R422', 'CNG238', 'CNG487', '1442', 'CNG65', 'R393', 'CNG319', 'CNG103', 'R417', '1786', '682', 'R438', 'CNG211', 'CNG474', 'CNG235', 'CNG484', '1730', '744', 'R506', 'CNG440', 'CNG526', 'CNG542', '635', 'CNG215', 'CNG64', 'R495', 'R331', 'R371', '679', 'CNG51', '628', '646', 'CNG461', '613', '733', '1216', '567', 'R421', '568', '619', 'CNG130', 'CNG328', 'R512', '599', '591', '1685', 'CNG282', 'R349', '705', '1797', 'R410', '692', 'R238', 'CNG163', 'R413', '727', '1790', '721', '661', '1098', 'R355', 'P257', 'R119', 'R332', 'R420', 'CNG52', '1112', '938', '592', 'CNG446', 'R595', 'CNG144', 'CNG445', 'P170', 'CNG93', 'CNG345', 'P381', '600', 'R325', '1525', '555', '729', '651', '663', 'R321', 'CNG323', 'CNG29', '655', '709', 'R223', 'R428', '647', '1125', '612', 'P260', '636', '626', '1022', 'CNG142', '1711', 'CNG115', 'R372', 'R426', '685']\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Created output/by_vehicle/R480.csv, 634 entries.\n", | |
| "Created output/by_vehicle/R505.csv, 238 entries.\n", | |
| "Created output/by_vehicle/909.csv, 2092 entries.\n", | |
| "Created output/by_vehicle/937.csv, 663 entries.\n", | |
| "Created output/by_vehicle/1001.csv, 590 entries.\n", | |
| "Created output/by_vehicle/1002.csv, 4463 entries.\n", | |
| "Created output/by_vehicle/1015.csv, 4152 entries.\n", | |
| "Created output/by_vehicle/1075.csv, 2274 entries.\n", | |
| "Created output/by_vehicle/1148.csv, 2390 entries.\n", | |
| "Created output/by_vehicle/1149.csv, 3898 entries.\n", | |
| "Created output/by_vehicle/1202.csv, 3664 entries.\n", | |
| "Created output/by_vehicle/1205.csv, 1291 entries.\n", | |
| "Created output/by_vehicle/1206.csv, 4855 entries.\n", | |
| "Created output/by_vehicle/1217.csv, 5870 entries.\n", | |
| "Created output/by_vehicle/1219.csv, 4239 entries.\n", | |
| "Created output/by_vehicle/1226.csv, 1967 entries.\n", | |
| "Created output/by_vehicle/1230.csv, 1233 entries.\n", | |
| "Created output/by_vehicle/1244.csv, 3226 entries.\n", | |
| "Created output/by_vehicle/1249.csv, 2070 entries.\n", | |
| "Created output/by_vehicle/1253.csv, 3847 entries.\n", | |
| "Created output/by_vehicle/1291.csv, 1546 entries.\n", | |
| "Created output/by_vehicle/1447.csv, 2277 entries.\n", | |
| "Created output/by_vehicle/1450.csv, 7171 entries.\n", | |
| "Created output/by_vehicle/1465.csv, 3026 entries.\n", | |
| "Created output/by_vehicle/1470.csv, 6919 entries.\n", | |
| "Created output/by_vehicle/1471.csv, 3593 entries.\n", | |
| "Created output/by_vehicle/1564.csv, 2635 entries.\n", | |
| "Created output/by_vehicle/1565.csv, 3827 entries.\n", | |
| "Created output/by_vehicle/1571.csv, 1669 entries.\n", | |
| "Created output/by_vehicle/1578.csv, 5320 entries.\n", | |
| "Created output/by_vehicle/1661.csv, 2487 entries.\n", | |
| "Created output/by_vehicle/1714.csv, 3170 entries.\n", | |
| "Created output/by_vehicle/1720.csv, 8805 entries.\n", | |
| "Created output/by_vehicle/1785.csv, 7362 entries.\n", | |
| "Created output/by_vehicle/CNG01.csv, 9068 entries.\n", | |
| "Created output/by_vehicle/CNG20.csv, 4878 entries.\n", | |
| "Created output/by_vehicle/CNG27.csv, 3330 entries.\n", | |
| "Created output/by_vehicle/CNG57.csv, 2207 entries.\n", | |
| "Created output/by_vehicle/CNG72.csv, 3813 entries.\n", | |
| "Created output/by_vehicle/1664.csv, 2810 entries.\n", | |
| "Created output/by_vehicle/CNG437.csv, 7521 entries.\n", | |
| "Created output/by_vehicle/CNG124.csv, 2921 entries.\n", | |
| "Created output/by_vehicle/CNG309.csv, 5234 entries.\n", | |
| "Created output/by_vehicle/1124.csv, 2870 entries.\n", | |
| "Created output/by_vehicle/CNG583.csv, 119 entries.\n", | |
| "Created output/by_vehicle/CNG476.csv, 3888 entries.\n", | |
| "Created output/by_vehicle/CNG469.csv, 2370 entries.\n", | |
| "Created output/by_vehicle/CNG164.csv, 1528 entries.\n", | |
| "Created output/by_vehicle/CNG585.csv, 416 entries.\n", | |
| "Created output/by_vehicle/CNG529.csv, 2862 entries.\n", | |
| "Created output/by_vehicle/R501.csv, 1937 entries.\n", | |
| "Created output/by_vehicle/CNG321.csv, 2257 entries.\n", | |
| "Created output/by_vehicle/CNG477.csv, 5737 entries.\n", | |
| "Created output/by_vehicle/R615.csv, 878 entries.\n", | |
| "Created output/by_vehicle/R274.csv, 517 entries.\n", | |
| "Created output/by_vehicle/CNG456.csv, 663 entries.\n", | |
| "Created output/by_vehicle/1246.csv, 3155 entries.\n", | |
| "Created output/by_vehicle/1535.csv, 6706 entries.\n", | |
| "Created output/by_vehicle/CNG147.csv, 4311 entries.\n", | |
| "Created output/by_vehicle/1713.csv, 6031 entries.\n", | |
| "Created output/by_vehicle/1724.csv, 4228 entries.\n", | |
| "Created output/by_vehicle/1214.csv, 3798 entries.\n", | |
| "Created output/by_vehicle/P179.csv, 900 entries.\n", | |
| "Created output/by_vehicle/CNG510.csv, 1203 entries.\n", | |
| "Created output/by_vehicle/1102.csv, 2198 entries.\n", | |
| "Created output/by_vehicle/1740.csv, 1874 entries.\n", | |
| "Created output/by_vehicle/CNG25.csv, 5172 entries.\n", | |
| "Created output/by_vehicle/1278.csv, 1271 entries.\n", | |
| "Created output/by_vehicle/1293.csv, 6541 entries.\n", | |
| "Created output/by_vehicle/CNG216.csv, 1168 entries.\n", | |
| "Created output/by_vehicle/CNG396.csv, 1887 entries.\n", | |
| "Created output/by_vehicle/563.csv, 1384 entries.\n", | |
| "Created output/by_vehicle/558.csv, 1482 entries.\n", | |
| "Created output/by_vehicle/577.csv, 1042 entries.\n", | |
| "Created output/by_vehicle/574.csv, 2359 entries.\n", | |
| "Created output/by_vehicle/564.csv, 205 entries.\n", | |
| "Created output/by_vehicle/582.csv, 3573 entries.\n", | |
| "Created output/by_vehicle/605.csv, 1405 entries.\n", | |
| "Created output/by_vehicle/607.csv, 1028 entries.\n", | |
| "Created output/by_vehicle/583.csv, 2296 entries.\n", | |
| "Created output/by_vehicle/586.csv, 1268 entries.\n", | |
| "Created output/by_vehicle/629.csv, 621 entries.\n", | |
| "Created output/by_vehicle/618.csv, 1550 entries.\n", | |
| "Created output/by_vehicle/616.csv, 3165 entries.\n", | |
| "Created output/by_vehicle/694.csv, 240 entries.\n", | |
| "Created output/by_vehicle/712.csv, 2729 entries.\n", | |
| "Created output/by_vehicle/595.csv, 5062 entries.\n", | |
| "Created output/by_vehicle/666.csv, 2279 entries.\n", | |
| "Created output/by_vehicle/597.csv, 2813 entries.\n", | |
| "Created output/by_vehicle/601.csv, 5928 entries.\n", | |
| "Created output/by_vehicle/722.csv, 1838 entries.\n", | |
| "Created output/by_vehicle/735.csv, 2700 entries.\n", | |
| "Created output/by_vehicle/1267.csv, 3683 entries.\n", | |
| "Created output/by_vehicle/488.csv, 5537 entries.\n", | |
| "Created output/by_vehicle/CNG338.csv, 3551 entries.\n", | |
| "Created output/by_vehicle/R427.csv, 61 entries.\n", | |
| "Created output/by_vehicle/R336.csv, 454 entries.\n", | |
| "Created output/by_vehicle/R599.csv, 2238 entries.\n", | |
| "Created output/by_vehicle/949.csv, 5014 entries.\n", | |
| "Created output/by_vehicle/956.csv, 900 entries.\n", | |
| "Created output/by_vehicle/1028.csv, 2320 entries.\n", | |
| "Created output/by_vehicle/1207.csv, 4977 entries.\n", | |
| "Created output/by_vehicle/1262.csv, 4642 entries.\n", | |
| "Created output/by_vehicle/1474.csv, 5153 entries.\n", | |
| "Created output/by_vehicle/1534.csv, 5975 entries.\n", | |
| "Created output/by_vehicle/1536.csv, 734 entries.\n", | |
| "Created output/by_vehicle/1738.csv, 4605 entries.\n", | |
| "Created output/by_vehicle/CNG47.csv, 4675 entries.\n", | |
| "Created output/by_vehicle/CNG62.csv, 3129 entries.\n", | |
| "Created output/by_vehicle/R594.csv, 1827 entries.\n", | |
| "Created output/by_vehicle/CNG567.csv, 846 entries.\n", | |
| "Created output/by_vehicle/CNG569.csv, 1935 entries.\n", | |
| "Created output/by_vehicle/CNG552.csv, 108 entries.\n", | |
| "Created output/by_vehicle/CNG452.csv, 2276 entries.\n", | |
| "Created output/by_vehicle/CNG145.csv, 799 entries.\n", | |
| "Created output/by_vehicle/CNG432.csv, 150 entries.\n", | |
| "Created output/by_vehicle/CNG449.csv, 6448 entries.\n", | |
| "Created output/by_vehicle/CNG554.csv, 2294 entries.\n", | |
| "Created output/by_vehicle/CNG36.csv, 2398 entries.\n", | |
| "Created output/by_vehicle/CNG221.csv, 435 entries.\n", | |
| "Created output/by_vehicle/CNG555.csv, 1461 entries.\n", | |
| "Created output/by_vehicle/1569.csv, 4521 entries.\n", | |
| "Created output/by_vehicle/CNG218.csv, 2480 entries.\n", | |
| "Created output/by_vehicle/1223.csv, 1540 entries.\n", | |
| "Created output/by_vehicle/R626.csv, 77 entries.\n", | |
| "Created output/by_vehicle/CNG511.csv, 609 entries.\n", | |
| "Created output/by_vehicle/1695.csv, 7450 entries.\n", | |
| "Created output/by_vehicle/CNG366.csv, 3732 entries.\n", | |
| "Created output/by_vehicle/560.csv, 1782 entries.\n", | |
| "Created output/by_vehicle/602.csv, 1673 entries.\n", | |
| "Created output/by_vehicle/590.csv, 3972 entries.\n", | |
| "Created output/by_vehicle/653.csv, 3726 entries.\n", | |
| "Created output/by_vehicle/R352.csv, 3 entries.\n", | |
| "Created output/by_vehicle/1113.csv, 3673 entries.\n", | |
| "Created output/by_vehicle/1280.csv, 2865 entries.\n", | |
| "Created output/by_vehicle/1449.csv, 3719 entries.\n", | |
| "Created output/by_vehicle/1524.csv, 5002 entries.\n", | |
| "Created output/by_vehicle/1747.csv, 3118 entries.\n", | |
| "Created output/by_vehicle/CNG421.csv, 4508 entries.\n", | |
| "Created output/by_vehicle/CNG551.csv, 662 entries.\n", | |
| "Created output/by_vehicle/CNG350.csv, 1265 entries.\n", | |
| "Created output/by_vehicle/1107.csv, 2066 entries.\n", | |
| "Created output/by_vehicle/CNG370.csv, 3074 entries.\n", | |
| "Created output/by_vehicle/R490.csv, 417 entries.\n", | |
| "Created output/by_vehicle/1757.csv, 3878 entries.\n", | |
| "Created output/by_vehicle/CNG135.csv, 3999 entries.\n", | |
| "Created output/by_vehicle/P267.csv, 568 entries.\n", | |
| "Created output/by_vehicle/P265.csv, 471 entries.\n", | |
| "Created output/by_vehicle/CNG363.csv, 2380 entries.\n", | |
| "Created output/by_vehicle/R364.csv, 307 entries.\n", | |
| "Created output/by_vehicle/1184.csv, 4286 entries.\n", | |
| "Created output/by_vehicle/1687.csv, 2674 entries.\n", | |
| "Created output/by_vehicle/1806.csv, 1387 entries.\n", | |
| "Created output/by_vehicle/1680.csv, 3905 entries.\n", | |
| "Created output/by_vehicle/1140.csv, 5380 entries.\n", | |
| "Created output/by_vehicle/R366.csv, 268 entries.\n", | |
| "Created output/by_vehicle/CNG580.csv, 1245 entries.\n", | |
| "Created output/by_vehicle/1021.csv, 6314 entries.\n", | |
| "Created output/by_vehicle/CNG362.csv, 2470 entries.\n", | |
| "Created output/by_vehicle/1621.csv, 540 entries.\n", | |
| "Created output/by_vehicle/CNG331.csv, 4481 entries.\n", | |
| "Created output/by_vehicle/732.csv, 533 entries.\n", | |
| "Created output/by_vehicle/CNG562.csv, 1618 entries.\n", | |
| "Created output/by_vehicle/CNG217.csv, 2136 entries.\n", | |
| "Created output/by_vehicle/610.csv, 3140 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Created output/by_vehicle/1264.csv, 3769 entries.\n", | |
| "Created output/by_vehicle/1662.csv, 5544 entries.\n", | |
| "Created output/by_vehicle/R439.csv, 256 entries.\n", | |
| "Created output/by_vehicle/1756.csv, 6399 entries.\n", | |
| "Created output/by_vehicle/CNG12.csv, 1161 entries.\n", | |
| "Created output/by_vehicle/CNG73.csv, 4351 entries.\n", | |
| "Created output/by_vehicle/670.csv, 856 entries.\n", | |
| "Created output/by_vehicle/608.csv, 1388 entries.\n", | |
| "Created output/by_vehicle/1255.csv, 4638 entries.\n", | |
| "Created output/by_vehicle/P247.csv, 1387 entries.\n", | |
| "Created output/by_vehicle/R645.csv, 1809 entries.\n", | |
| "Created output/by_vehicle/1802.csv, 2103 entries.\n", | |
| "Created output/by_vehicle/CNG40.csv, 742 entries.\n", | |
| "Created output/by_vehicle/641.csv, 2574 entries.\n", | |
| "Created output/by_vehicle/639.csv, 801 entries.\n", | |
| "Created output/by_vehicle/1706.csv, 4752 entries.\n", | |
| "Created output/by_vehicle/CNG475.csv, 2070 entries.\n", | |
| "Created output/by_vehicle/R292.csv, 153 entries.\n", | |
| "Created output/by_vehicle/652.csv, 1943 entries.\n", | |
| "Created output/by_vehicle/1210.csv, 8323 entries.\n", | |
| "Created output/by_vehicle/CNG530.csv, 1301 entries.\n", | |
| "Created output/by_vehicle/998.csv, 1523 entries.\n", | |
| "Created output/by_vehicle/CNG150.csv, 1746 entries.\n", | |
| "Created output/by_vehicle/1690.csv, 4217 entries.\n", | |
| "Created output/by_vehicle/1588.csv, 3705 entries.\n", | |
| "Created output/by_vehicle/606.csv, 3901 entries.\n", | |
| "Created output/by_vehicle/1172.csv, 6334 entries.\n", | |
| "Created output/by_vehicle/1618.csv, 1173 entries.\n", | |
| "Created output/by_vehicle/1000.csv, 4951 entries.\n", | |
| "Created output/by_vehicle/CNG19.csv, 1407 entries.\n", | |
| "Created output/by_vehicle/CNG91.csv, 1687 entries.\n", | |
| "Created output/by_vehicle/1671.csv, 3660 entries.\n", | |
| "Created output/by_vehicle/R241.csv, 2008 entries.\n", | |
| "Created output/by_vehicle/1498.csv, 1112 entries.\n", | |
| "Created output/by_vehicle/CNG428.csv, 1281 entries.\n", | |
| "Created output/by_vehicle/1803.csv, 1025 entries.\n", | |
| "Created output/by_vehicle/603.csv, 4523 entries.\n", | |
| "Created output/by_vehicle/1276.csv, 2498 entries.\n", | |
| "Created output/by_vehicle/1589.csv, 1482 entries.\n", | |
| "Created output/by_vehicle/1114.csv, 2925 entries.\n", | |
| "Created output/by_vehicle/1567.csv, 1140 entries.\n", | |
| "Created output/by_vehicle/CNG343.csv, 3675 entries.\n", | |
| "Created output/by_vehicle/1712.csv, 1645 entries.\n", | |
| "Created output/by_vehicle/1444.csv, 824 entries.\n", | |
| "Created output/by_vehicle/CNG229.csv, 2540 entries.\n", | |
| "Created output/by_vehicle/1014.csv, 1854 entries.\n", | |
| "Created output/by_vehicle/730.csv, 748 entries.\n", | |
| "Created output/by_vehicle/CNG454.csv, 2993 entries.\n", | |
| "Created output/by_vehicle/1667.csv, 168 entries.\n", | |
| "Created output/by_vehicle/1224.csv, 3764 entries.\n", | |
| "Created output/by_vehicle/1446.csv, 300 entries.\n", | |
| "Created output/by_vehicle/1795.csv, 2167 entries.\n", | |
| "Created output/by_vehicle/1675.csv, 3287 entries.\n", | |
| "Created output/by_vehicle/751.csv, 2736 entries.\n", | |
| "Created output/by_vehicle/R606.csv, 85 entries.\n", | |
| "Created output/by_vehicle/1579.csv, 3247 entries.\n", | |
| "Created output/by_vehicle/R436.csv, 261 entries.\n", | |
| "Created output/by_vehicle/1765.csv, 2328 entries.\n", | |
| "Created output/by_vehicle/1800.csv, 833 entries.\n", | |
| "Created output/by_vehicle/CNG494.csv, 1919 entries.\n", | |
| "Created output/by_vehicle/554.csv, 5912 entries.\n", | |
| "Created output/by_vehicle/578.csv, 565 entries.\n", | |
| "Created output/by_vehicle/1277.csv, 4545 entries.\n", | |
| "Created output/by_vehicle/CNG460.csv, 2476 entries.\n", | |
| "Created output/by_vehicle/CNG214.csv, 1492 entries.\n", | |
| "Created output/by_vehicle/1062.csv, 3733 entries.\n", | |
| "Created output/by_vehicle/R392.csv, 223 entries.\n", | |
| "Created output/by_vehicle/CNG210.csv, 5375 entries.\n", | |
| "Created output/by_vehicle/CNG549.csv, 4791 entries.\n", | |
| "Created output/by_vehicle/576.csv, 1292 entries.\n", | |
| "Created output/by_vehicle/617.csv, 1050 entries.\n", | |
| "Created output/by_vehicle/1566.csv, 3795 entries.\n", | |
| "Created output/by_vehicle/CNG325.csv, 992 entries.\n", | |
| "Created output/by_vehicle/CNG496.csv, 954 entries.\n", | |
| "Created output/by_vehicle/CNG534.csv, 230 entries.\n", | |
| "Created output/by_vehicle/CNG07.csv, 728 entries.\n", | |
| "Created output/by_vehicle/1241.csv, 2979 entries.\n", | |
| "Created output/by_vehicle/1555.csv, 2827 entries.\n", | |
| "Created output/by_vehicle/CNG550.csv, 1662 entries.\n", | |
| "Created output/by_vehicle/CNG573.csv, 3762 entries.\n", | |
| "Created output/by_vehicle/893.csv, 9305 entries.\n", | |
| "Created output/by_vehicle/903.csv, 1631 entries.\n", | |
| "Created output/by_vehicle/CNG08.csv, 1252 entries.\n", | |
| "Created output/by_vehicle/CNG44.csv, 896 entries.\n", | |
| "Created output/by_vehicle/947.csv, 738 entries.\n", | |
| "Created output/by_vehicle/974.csv, 633 entries.\n", | |
| "Created output/by_vehicle/726.csv, 162 entries.\n", | |
| "Created output/by_vehicle/1294.csv, 2578 entries.\n", | |
| "Created output/by_vehicle/710.csv, 424 entries.\n", | |
| "Created output/by_vehicle/R631.csv, 478 entries.\n", | |
| "Created output/by_vehicle/R370.csv, 738 entries.\n", | |
| "Created output/by_vehicle/1238.csv, 1006 entries.\n", | |
| "Created output/by_vehicle/1783.csv, 4969 entries.\n", | |
| "Created output/by_vehicle/1011.csv, 596 entries.\n", | |
| "Created output/by_vehicle/633.csv, 1667 entries.\n", | |
| "Created output/by_vehicle/CNG443.csv, 2031 entries.\n", | |
| "Created output/by_vehicle/657.csv, 2317 entries.\n", | |
| "Created output/by_vehicle/742.csv, 545 entries.\n", | |
| "Created output/by_vehicle/939.csv, 271 entries.\n", | |
| "Created output/by_vehicle/1692.csv, 1953 entries.\n", | |
| "Created output/by_vehicle/R368.csv, 745 entries.\n", | |
| "Created output/by_vehicle/CNG111.csv, 593 entries.\n", | |
| "Created output/by_vehicle/1577.csv, 1269 entries.\n", | |
| "Created output/by_vehicle/R642.csv, 1069 entries.\n", | |
| "Created output/by_vehicle/CNG101.csv, 2541 entries.\n", | |
| "Created output/by_vehicle/1743.csv, 3388 entries.\n", | |
| "Created output/by_vehicle/CNG482.csv, 2493 entries.\n", | |
| "Created output/by_vehicle/562.csv, 1006 entries.\n", | |
| "Created output/by_vehicle/953.csv, 652 entries.\n", | |
| "Created output/by_vehicle/1725.csv, 661 entries.\n", | |
| "Created output/by_vehicle/1273.csv, 3690 entries.\n", | |
| "Created output/by_vehicle/R252.csv, 185 entries.\n", | |
| "Created output/by_vehicle/1476.csv, 1285 entries.\n", | |
| "Created output/by_vehicle/R234.csv, 764 entries.\n", | |
| "Created output/by_vehicle/1473.csv, 213 entries.\n", | |
| "Created output/by_vehicle/1101.csv, 2916 entries.\n", | |
| "Created output/by_vehicle/1784.csv, 2859 entries.\n", | |
| "Created output/by_vehicle/1142.csv, 2871 entries.\n", | |
| "Created output/by_vehicle/746.csv, 2074 entries.\n", | |
| "Created output/by_vehicle/1191.csv, 2050 entries.\n", | |
| "Created output/by_vehicle/CNG435.csv, 1220 entries.\n", | |
| "Created output/by_vehicle/CNG83.csv, 157 entries.\n", | |
| "Created output/by_vehicle/1543.csv, 3478 entries.\n", | |
| "Created output/by_vehicle/R269.csv, 128 entries.\n", | |
| "Created output/by_vehicle/1745.csv, 3157 entries.\n", | |
| "Created output/by_vehicle/1723.csv, 323 entries.\n", | |
| "Created output/by_vehicle/1268.csv, 193 entries.\n", | |
| "Created output/by_vehicle/1175.csv, 1357 entries.\n", | |
| "Created output/by_vehicle/CNG228.csv, 578 entries.\n", | |
| "Created output/by_vehicle/1169.csv, 4497 entries.\n", | |
| "Created output/by_vehicle/R653.csv, 949 entries.\n", | |
| "Created output/by_vehicle/R635.csv, 2354 entries.\n", | |
| "Created output/by_vehicle/CNG252.csv, 689 entries.\n", | |
| "Created output/by_vehicle/1808.csv, 340 entries.\n", | |
| "Created output/by_vehicle/R481.csv, 86 entries.\n", | |
| "Created output/by_vehicle/734.csv, 4372 entries.\n", | |
| "Created output/by_vehicle/962.csv, 6225 entries.\n", | |
| "Created output/by_vehicle/1677.csv, 1183 entries.\n", | |
| "Created output/by_vehicle/R237.csv, 813 entries.\n", | |
| "Created output/by_vehicle/1598.csv, 832 entries.\n", | |
| "Created output/by_vehicle/665.csv, 420 entries.\n", | |
| "Created output/by_vehicle/1477.csv, 352 entries.\n", | |
| "Created output/by_vehicle/1274.csv, 2950 entries.\n", | |
| "Created output/by_vehicle/755.csv, 378 entries.\n", | |
| "Created output/by_vehicle/CNG80.csv, 1884 entries.\n", | |
| "Created output/by_vehicle/R573.csv, 681 entries.\n", | |
| "Created output/by_vehicle/975.csv, 1714 entries.\n", | |
| "Created output/by_vehicle/915.csv, 2692 entries.\n", | |
| "Created output/by_vehicle/R634.csv, 3448 entries.\n", | |
| "Created output/by_vehicle/1755.csv, 2838 entries.\n", | |
| "Created output/by_vehicle/723.csv, 1227 entries.\n", | |
| "Created output/by_vehicle/1482.csv, 592 entries.\n", | |
| "Created output/by_vehicle/1767.csv, 496 entries.\n", | |
| "Created output/by_vehicle/965.csv, 574 entries.\n", | |
| "Created output/by_vehicle/R232.csv, 301 entries.\n", | |
| "Created output/by_vehicle/P195.csv, 452 entries.\n", | |
| "Created output/by_vehicle/1616.csv, 1409 entries.\n", | |
| "Created output/by_vehicle/584.csv, 490 entries.\n", | |
| "Created output/by_vehicle/1162.csv, 1181 entries.\n", | |
| "Created output/by_vehicle/CNG414.csv, 3305 entries.\n", | |
| "Created output/by_vehicle/R06.csv, 409 entries.\n", | |
| "Created output/by_vehicle/CNG324.csv, 3648 entries.\n", | |
| "Created output/by_vehicle/1006.csv, 452 entries.\n", | |
| "Created output/by_vehicle/CNG43.csv, 249 entries.\n", | |
| "Created output/by_vehicle/1116.csv, 1149 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Created output/by_vehicle/706.csv, 39 entries.\n", | |
| "Created output/by_vehicle/CNG541.csv, 2064 entries.\n", | |
| "Created output/by_vehicle/677.csv, 735 entries.\n", | |
| "Created output/by_vehicle/1594.csv, 431 entries.\n", | |
| "Created output/by_vehicle/981.csv, 1545 entries.\n", | |
| "Created output/by_vehicle/CNG232.csv, 1922 entries.\n", | |
| "Created output/by_vehicle/1209.csv, 1099 entries.\n", | |
| "Created output/by_vehicle/1526.csv, 180 entries.\n", | |
| "Created output/by_vehicle/R216.csv, 280 entries.\n", | |
| "Created output/by_vehicle/CNG582.csv, 1907 entries.\n", | |
| "Created output/by_vehicle/R231.csv, 899 entries.\n", | |
| "Created output/by_vehicle/621.csv, 875 entries.\n", | |
| "Created output/by_vehicle/R511.csv, 28 entries.\n", | |
| "Created output/by_vehicle/1676.csv, 716 entries.\n", | |
| "Created output/by_vehicle/703.csv, 189 entries.\n", | |
| "Created output/by_vehicle/R398.csv, 208 entries.\n", | |
| "Created output/by_vehicle/748.csv, 1288 entries.\n", | |
| "Created output/by_vehicle/R641.csv, 16 entries.\n", | |
| "Created output/by_vehicle/CNG441.csv, 898 entries.\n", | |
| "Created output/by_vehicle/1192.csv, 2135 entries.\n", | |
| "Created output/by_vehicle/1580.csv, 62 entries.\n", | |
| "Created output/by_vehicle/754.csv, 167 entries.\n", | |
| "Created output/by_vehicle/R434.csv, 583 entries.\n", | |
| "Created output/by_vehicle/R471.csv, 1407 entries.\n", | |
| "Created output/by_vehicle/P198.csv, 59 entries.\n", | |
| "Created output/by_vehicle/R591.csv, 1002 entries.\n", | |
| "Created output/by_vehicle/CNG31.csv, 4764 entries.\n", | |
| "Created output/by_vehicle/R309.csv, 104 entries.\n", | |
| "Created output/by_vehicle/R357.csv, 1404 entries.\n", | |
| "Created output/by_vehicle/R414.csv, 142 entries.\n", | |
| "Created output/by_vehicle/1726.csv, 1009 entries.\n", | |
| "Created output/by_vehicle/R282.csv, 36 entries.\n", | |
| "Created output/by_vehicle/1781.csv, 3125 entries.\n", | |
| "Created output/by_vehicle/CNG139.csv, 4072 entries.\n", | |
| "Created output/by_vehicle/CNG444.csv, 1357 entries.\n", | |
| "Created output/by_vehicle/R244.csv, 564 entries.\n", | |
| "Created output/by_vehicle/1242.csv, 622 entries.\n", | |
| "Created output/by_vehicle/1054.csv, 867 entries.\n", | |
| "Created output/by_vehicle/R367.csv, 482 entries.\n", | |
| "Created output/by_vehicle/556.csv, 684 entries.\n", | |
| "Created output/by_vehicle/1570.csv, 2622 entries.\n", | |
| "Created output/by_vehicle/944.csv, 6912 entries.\n", | |
| "Created output/by_vehicle/1069.csv, 3920 entries.\n", | |
| "Created output/by_vehicle/1619.csv, 1295 entries.\n", | |
| "Created output/by_vehicle/CNG39.csv, 279 entries.\n", | |
| "Created output/by_vehicle/1128.csv, 930 entries.\n", | |
| "Created output/by_vehicle/CNG49.csv, 1090 entries.\n", | |
| "Created output/by_vehicle/CNG34.csv, 1928 entries.\n", | |
| "Created output/by_vehicle/CNG315.csv, 563 entries.\n", | |
| "Created output/by_vehicle/623.csv, 1360 entries.\n", | |
| "Created output/by_vehicle/1196.csv, 612 entries.\n", | |
| "Created output/by_vehicle/R182.csv, 572 entries.\n", | |
| "Created output/by_vehicle/609.csv, 1591 entries.\n", | |
| "Created output/by_vehicle/CNG543.csv, 711 entries.\n", | |
| "Created output/by_vehicle/R613.csv, 89 entries.\n", | |
| "Created output/by_vehicle/R514.csv, 263 entries.\n", | |
| "Created output/by_vehicle/644.csv, 877 entries.\n", | |
| "Created output/by_vehicle/R379.csv, 127 entries.\n", | |
| "Created output/by_vehicle/648.csv, 3169 entries.\n", | |
| "Created output/by_vehicle/R651.csv, 203 entries.\n", | |
| "Created output/by_vehicle/1284.csv, 1076 entries.\n", | |
| "Created output/by_vehicle/R476.csv, 91 entries.\n", | |
| "Created output/by_vehicle/1560.csv, 475 entries.\n", | |
| "Created output/by_vehicle/R608.csv, 1017 entries.\n", | |
| "Created output/by_vehicle/CNG54.csv, 209 entries.\n", | |
| "Created output/by_vehicle/P182.csv, 1870 entries.\n", | |
| "Created output/by_vehicle/CNG32.csv, 2123 entries.\n", | |
| "Created output/by_vehicle/CNG519.csv, 96 entries.\n", | |
| "Created output/by_vehicle/667.csv, 1202 entries.\n", | |
| "Created output/by_vehicle/R114.csv, 1235 entries.\n", | |
| "Created output/by_vehicle/587.csv, 3286 entries.\n", | |
| "Created output/by_vehicle/R639.csv, 600 entries.\n", | |
| "Created output/by_vehicle/CNG575.csv, 1723 entries.\n", | |
| "Created output/by_vehicle/R239.csv, 126 entries.\n", | |
| "Created output/by_vehicle/1586.csv, 440 entries.\n", | |
| "Created output/by_vehicle/R384.csv, 529 entries.\n", | |
| "Created output/by_vehicle/622.csv, 3355 entries.\n", | |
| "Created output/by_vehicle/CNG548.csv, 446 entries.\n", | |
| "Created output/by_vehicle/CNG33.csv, 2142 entries.\n", | |
| "Created output/by_vehicle/614.csv, 1589 entries.\n", | |
| "Created output/by_vehicle/R260.csv, 175 entries.\n", | |
| "Created output/by_vehicle/CNG71.csv, 3230 entries.\n", | |
| "Created output/by_vehicle/631.csv, 84 entries.\n", | |
| "Created output/by_vehicle/R570.csv, 752 entries.\n", | |
| "Created output/by_vehicle/CNG531.csv, 589 entries.\n", | |
| "Created output/by_vehicle/R429.csv, 61 entries.\n", | |
| "Created output/by_vehicle/R578.csv, 285 entries.\n", | |
| "Created output/by_vehicle/R621.csv, 295 entries.\n", | |
| "Created output/by_vehicle/CNG500.csv, 410 entries.\n", | |
| "Created output/by_vehicle/702.csv, 549 entries.\n", | |
| "Created output/by_vehicle/569.csv, 3155 entries.\n", | |
| "Created output/by_vehicle/557.csv, 964 entries.\n", | |
| "Created output/by_vehicle/R600.csv, 864 entries.\n", | |
| "Created output/by_vehicle/R517.csv, 348 entries.\n", | |
| "Created output/by_vehicle/R224.csv, 126 entries.\n", | |
| "Created output/by_vehicle/942.csv, 271 entries.\n", | |
| "Created output/by_vehicle/1792.csv, 2961 entries.\n", | |
| "Created output/by_vehicle/749.csv, 626 entries.\n", | |
| "Created output/by_vehicle/1481.csv, 1398 entries.\n", | |
| "Created output/by_vehicle/573.csv, 1253 entries.\n", | |
| "Created output/by_vehicle/CNG385.csv, 966 entries.\n", | |
| "Created output/by_vehicle/1793.csv, 4018 entries.\n", | |
| "Created output/by_vehicle/R474.csv, 152 entries.\n", | |
| "Created output/by_vehicle/R609.csv, 980 entries.\n", | |
| "Created output/by_vehicle/624.csv, 1846 entries.\n", | |
| "Created output/by_vehicle/CNG465.csv, 38 entries.\n", | |
| "Created output/by_vehicle/R354.csv, 467 entries.\n", | |
| "Created output/by_vehicle/638.csv, 748 entries.\n", | |
| "Created output/by_vehicle/R259.csv, 759 entries.\n", | |
| "Created output/by_vehicle/589.csv, 769 entries.\n", | |
| "Created output/by_vehicle/R320.csv, 451 entries.\n", | |
| "Created output/by_vehicle/CNG317.csv, 695 entries.\n", | |
| "Created output/by_vehicle/659.csv, 476 entries.\n", | |
| "Created output/by_vehicle/CNG422.csv, 1196 entries.\n", | |
| "Created output/by_vehicle/642.csv, 2700 entries.\n", | |
| "Created output/by_vehicle/R17.csv, 41 entries.\n", | |
| "Created output/by_vehicle/R630.csv, 1226 entries.\n", | |
| "Created output/by_vehicle/747.csv, 3215 entries.\n", | |
| "Created output/by_vehicle/R431.csv, 200 entries.\n", | |
| "Created output/by_vehicle/R311.csv, 114 entries.\n", | |
| "Created output/by_vehicle/R424.csv, 804 entries.\n", | |
| "Created output/by_vehicle/R425.csv, 277 entries.\n", | |
| "Created output/by_vehicle/R596.csv, 627 entries.\n", | |
| "Created output/by_vehicle/650.csv, 83 entries.\n", | |
| "Created output/by_vehicle/654.csv, 1869 entries.\n", | |
| "Created output/by_vehicle/R369.csv, 549 entries.\n", | |
| "Created output/by_vehicle/916.csv, 517 entries.\n", | |
| "Created output/by_vehicle/1611.csv, 60 entries.\n", | |
| "Created output/by_vehicle/596.csv, 986 entries.\n", | |
| "Created output/by_vehicle/R397.csv, 370 entries.\n", | |
| "Created output/by_vehicle/745.csv, 1494 entries.\n", | |
| "Created output/by_vehicle/1005.csv, 309 entries.\n", | |
| "Created output/by_vehicle/P262.csv, 214 entries.\n", | |
| "Created output/by_vehicle/681.csv, 2522 entries.\n", | |
| "Created output/by_vehicle/R487.csv, 185 entries.\n", | |
| "Created output/by_vehicle/R544.csv, 73 entries.\n", | |
| "Created output/by_vehicle/P168.csv, 378 entries.\n", | |
| "Created output/by_vehicle/R577.csv, 417 entries.\n", | |
| "Created output/by_vehicle/R422.csv, 69 entries.\n", | |
| "Created output/by_vehicle/CNG238.csv, 309 entries.\n", | |
| "Created output/by_vehicle/CNG487.csv, 61 entries.\n", | |
| "Created output/by_vehicle/1442.csv, 6 entries.\n", | |
| "Created output/by_vehicle/CNG65.csv, 195 entries.\n", | |
| "Created output/by_vehicle/R393.csv, 145 entries.\n", | |
| "Created output/by_vehicle/CNG319.csv, 991 entries.\n", | |
| "Created output/by_vehicle/CNG103.csv, 2285 entries.\n", | |
| "Created output/by_vehicle/R417.csv, 319 entries.\n", | |
| "Created output/by_vehicle/1786.csv, 2202 entries.\n", | |
| "Created output/by_vehicle/682.csv, 1040 entries.\n", | |
| "Created output/by_vehicle/R438.csv, 238 entries.\n", | |
| "Created output/by_vehicle/CNG211.csv, 2102 entries.\n", | |
| "Created output/by_vehicle/CNG474.csv, 471 entries.\n", | |
| "Created output/by_vehicle/CNG235.csv, 321 entries.\n", | |
| "Created output/by_vehicle/CNG484.csv, 180 entries.\n", | |
| "Created output/by_vehicle/1730.csv, 421 entries.\n", | |
| "Created output/by_vehicle/744.csv, 156 entries.\n", | |
| "Created output/by_vehicle/R506.csv, 159 entries.\n", | |
| "Created output/by_vehicle/CNG440.csv, 3 entries.\n", | |
| "Created output/by_vehicle/CNG526.csv, 316 entries.\n", | |
| "Created output/by_vehicle/CNG542.csv, 20 entries.\n", | |
| "Created output/by_vehicle/635.csv, 236 entries.\n", | |
| "Created output/by_vehicle/CNG215.csv, 681 entries.\n", | |
| "Created output/by_vehicle/CNG64.csv, 149 entries.\n", | |
| "Created output/by_vehicle/R495.csv, 107 entries.\n", | |
| "Created output/by_vehicle/R331.csv, 89 entries.\n", | |
| "Created output/by_vehicle/R371.csv, 42 entries.\n", | |
| "Created output/by_vehicle/679.csv, 1653 entries.\n", | |
| "Created output/by_vehicle/CNG51.csv, 1629 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Created output/by_vehicle/628.csv, 129 entries.\n", | |
| "Created output/by_vehicle/646.csv, 1784 entries.\n", | |
| "Created output/by_vehicle/CNG461.csv, 4061 entries.\n", | |
| "Created output/by_vehicle/613.csv, 250 entries.\n", | |
| "Created output/by_vehicle/733.csv, 46 entries.\n", | |
| "Created output/by_vehicle/1216.csv, 1930 entries.\n", | |
| "Created output/by_vehicle/567.csv, 325 entries.\n", | |
| "Created output/by_vehicle/R421.csv, 67 entries.\n", | |
| "Created output/by_vehicle/568.csv, 536 entries.\n", | |
| "Created output/by_vehicle/619.csv, 1039 entries.\n", | |
| "Created output/by_vehicle/CNG130.csv, 1574 entries.\n", | |
| "Created output/by_vehicle/CNG328.csv, 279 entries.\n", | |
| "Created output/by_vehicle/R512.csv, 78 entries.\n", | |
| "Created output/by_vehicle/599.csv, 664 entries.\n", | |
| "Created output/by_vehicle/591.csv, 145 entries.\n", | |
| "Created output/by_vehicle/1685.csv, 4337 entries.\n", | |
| "Created output/by_vehicle/CNG282.csv, 252 entries.\n", | |
| "Created output/by_vehicle/R349.csv, 626 entries.\n", | |
| "Created output/by_vehicle/705.csv, 750 entries.\n", | |
| "Created output/by_vehicle/1797.csv, 744 entries.\n", | |
| "Created output/by_vehicle/R410.csv, 169 entries.\n", | |
| "Created output/by_vehicle/692.csv, 398 entries.\n", | |
| "Created output/by_vehicle/R238.csv, 112 entries.\n", | |
| "Created output/by_vehicle/CNG163.csv, 1228 entries.\n", | |
| "Created output/by_vehicle/R413.csv, 105 entries.\n", | |
| "Created output/by_vehicle/727.csv, 154 entries.\n", | |
| "Created output/by_vehicle/1790.csv, 258 entries.\n", | |
| "Created output/by_vehicle/721.csv, 2197 entries.\n", | |
| "Created output/by_vehicle/661.csv, 77 entries.\n", | |
| "Created output/by_vehicle/1098.csv, 532 entries.\n", | |
| "Created output/by_vehicle/R355.csv, 299 entries.\n", | |
| "Created output/by_vehicle/P257.csv, 429 entries.\n", | |
| "Created output/by_vehicle/R119.csv, 595 entries.\n", | |
| "Created output/by_vehicle/R332.csv, 41 entries.\n", | |
| "Created output/by_vehicle/R420.csv, 25 entries.\n", | |
| "Created output/by_vehicle/CNG52.csv, 701 entries.\n", | |
| "Created output/by_vehicle/1112.csv, 1235 entries.\n", | |
| "Created output/by_vehicle/938.csv, 209 entries.\n", | |
| "Created output/by_vehicle/592.csv, 446 entries.\n", | |
| "Created output/by_vehicle/CNG446.csv, 1455 entries.\n", | |
| "Created output/by_vehicle/R595.csv, 235 entries.\n", | |
| "Created output/by_vehicle/CNG144.csv, 1303 entries.\n", | |
| "Created output/by_vehicle/CNG445.csv, 890 entries.\n", | |
| "Created output/by_vehicle/P170.csv, 811 entries.\n", | |
| "Created output/by_vehicle/CNG93.csv, 940 entries.\n", | |
| "Created output/by_vehicle/CNG345.csv, 1104 entries.\n", | |
| "Created output/by_vehicle/P381.csv, 167 entries.\n", | |
| "Created output/by_vehicle/600.csv, 427 entries.\n", | |
| "Created output/by_vehicle/R325.csv, 1007 entries.\n", | |
| "Created output/by_vehicle/1525.csv, 672 entries.\n", | |
| "Created output/by_vehicle/555.csv, 293 entries.\n", | |
| "Created output/by_vehicle/729.csv, 32 entries.\n", | |
| "Created output/by_vehicle/651.csv, 23 entries.\n", | |
| "Created output/by_vehicle/663.csv, 750 entries.\n", | |
| "Created output/by_vehicle/R321.csv, 115 entries.\n", | |
| "Created output/by_vehicle/CNG323.csv, 830 entries.\n", | |
| "Created output/by_vehicle/CNG29.csv, 7 entries.\n", | |
| "Created output/by_vehicle/655.csv, 222 entries.\n", | |
| "Created output/by_vehicle/709.csv, 98 entries.\n", | |
| "Created output/by_vehicle/R223.csv, 24 entries.\n", | |
| "Created output/by_vehicle/R428.csv, 225 entries.\n", | |
| "Created output/by_vehicle/647.csv, 701 entries.\n", | |
| "Created output/by_vehicle/1125.csv, 112 entries.\n", | |
| "Created output/by_vehicle/612.csv, 103 entries.\n", | |
| "Created output/by_vehicle/P260.csv, 161 entries.\n", | |
| "Created output/by_vehicle/636.csv, 387 entries.\n", | |
| "Created output/by_vehicle/626.csv, 160 entries.\n", | |
| "Created output/by_vehicle/1022.csv, 200 entries.\n", | |
| "Created output/by_vehicle/CNG142.csv, 344 entries.\n", | |
| "Created output/by_vehicle/1711.csv, 296 entries.\n", | |
| "Created output/by_vehicle/CNG115.csv, 56 entries.\n", | |
| "Created output/by_vehicle/R372.csv, 83 entries.\n", | |
| "Created output/by_vehicle/R426.csv, 9 entries.\n", | |
| "Created output/by_vehicle/685.csv, 94 entries.\n", | |
| "Routes: ['354', '152', '202', '348', '139', '78', '11', '167', '208', '358', '5', '31', '64', '103', '53', '55', '328', '368', '59', '56', '117', '111', '359', '276', '302', '309', '10', '12', '336', '36', 'VJR4', '298', '97', '24', '144', 'VJR1', '146', '42', '174', '29', '145', '57', '135', '177', '151', '94', '312', '372', '361', '203', '7A', '281', '181C', '37', '168', '322', '234', '376', '317', '315', '331', '120', '169', '291', '256', '87', '109', '347', 'VJR2', '305', '43', 'VJR3', '38', '282', '125', '181', '360', '123', '301', '148', '197', '357', '19', '155', '187', 'VJR6', '216', '121', '110', '355', '133', '100', '163', '52', '41', '119', '191', '195', '140', '71', '284', '302B', '154', '159', '118', '186A', '215', '118B', '207', '367', '170', '126', '369', '217', '314', '180', '84', '337', '91', '201', '303', '13', '188', '69', '186', '158', '367C', '363A', '50', '166', '204', '162', '58', '165', '346', '142', '205', '143', '206', '19D', '68S', '149', '136', '85', '19A', '327', '113', '340', '22', '77', '302A(New)', '145A', '148A', '302D', '63', '190', '264', '101', '2', 'VJR5', '122', '76', '158A(NEW)', '108', '26', '192', '213', '30', '363', '292', '299', '102', '115P', '107', '257', '128', '326', '33', '14', '277A', '117A', '27', '332', '50B', '279', '297', '501', '70A', '335', '323B', '87F', '379', '85A', '51', '374', '304', '237', '13A', '22A', '304A', '310', '21', '316', '295', '117C', '209', '203P', '141', '189', '335A', '60', '105', '175', '116', '233', '84B', '305B', '39', '147', '47']\n", | |
| "Appended to output/by_route/354.csv, 7304 entries.\n", | |
| "Appended to output/by_route/152.csv, 905 entries.\n", | |
| "Appended to output/by_route/202.csv, 19586 entries.\n", | |
| "Appended to output/by_route/348.csv, 5470 entries.\n", | |
| "Appended to output/by_route/139.csv, 10922 entries.\n", | |
| "Appended to output/by_route/78.csv, 3963 entries.\n", | |
| "Appended to output/by_route/11.csv, 11564 entries.\n", | |
| "Appended to output/by_route/167.csv, 4895 entries.\n", | |
| "Appended to output/by_route/208.csv, 15274 entries.\n", | |
| "Appended to output/by_route/358.csv, 30105 entries.\n", | |
| "Appended to output/by_route/5.csv, 34618 entries.\n", | |
| "Appended to output/by_route/31.csv, 11737 entries.\n", | |
| "Appended to output/by_route/64.csv, 19536 entries.\n", | |
| "Appended to output/by_route/103.csv, 17728 entries.\n", | |
| "Appended to output/by_route/53.csv, 6280 entries.\n", | |
| "Appended to output/by_route/55.csv, 6595 entries.\n", | |
| "Appended to output/by_route/328.csv, 873 entries.\n", | |
| "Appended to output/by_route/368.csv, 8222 entries.\n", | |
| "Appended to output/by_route/59.csv, 6639 entries.\n", | |
| "Appended to output/by_route/56.csv, 4513 entries.\n", | |
| "Appended to output/by_route/117.csv, 4514 entries.\n", | |
| "Appended to output/by_route/111.csv, 18689 entries.\n", | |
| "Appended to output/by_route/359.csv, 1022 entries.\n", | |
| "Appended to output/by_route/276.csv, 6459 entries.\n", | |
| "Appended to output/by_route/302.csv, 1725 entries.\n", | |
| "Appended to output/by_route/309.csv, 13532 entries.\n", | |
| "Appended to output/by_route/10.csv, 2578 entries.\n", | |
| "Appended to output/by_route/12.csv, 6087 entries.\n", | |
| "Appended to output/by_route/336.csv, 6245 entries.\n", | |
| "Appended to output/by_route/36.csv, 448 entries.\n", | |
| "Appended to output/by_route/VJR4.csv, 5169 entries.\n", | |
| "Appended to output/by_route/298.csv, 1643 entries.\n", | |
| "Appended to output/by_route/97.csv, 1539 entries.\n", | |
| "Appended to output/by_route/24.csv, 7820 entries.\n", | |
| "Appended to output/by_route/144.csv, 4310 entries.\n", | |
| "Appended to output/by_route/VJR1.csv, 5838 entries.\n", | |
| "Appended to output/by_route/146.csv, 11161 entries.\n", | |
| "Appended to output/by_route/42.csv, 31558 entries.\n", | |
| "Appended to output/by_route/174.csv, 5783 entries.\n", | |
| "Appended to output/by_route/29.csv, 13479 entries.\n", | |
| "Appended to output/by_route/145.csv, 6243 entries.\n", | |
| "Appended to output/by_route/57.csv, 5175 entries.\n", | |
| "Appended to output/by_route/135.csv, 1804 entries.\n", | |
| "Appended to output/by_route/177.csv, 11061 entries.\n", | |
| "Appended to output/by_route/151.csv, 4420 entries.\n", | |
| "Appended to output/by_route/94.csv, 15278 entries.\n", | |
| "Appended to output/by_route/312.csv, 7940 entries.\n", | |
| "Appended to output/by_route/372.csv, 8838 entries.\n", | |
| "Appended to output/by_route/361.csv, 4050 entries.\n", | |
| "Appended to output/by_route/203.csv, 5916 entries.\n", | |
| "Appended to output/by_route/7A.csv, 5767 entries.\n", | |
| "Appended to output/by_route/281.csv, 4835 entries.\n", | |
| "Appended to output/by_route/181C.csv, 13592 entries.\n", | |
| "Appended to output/by_route/37.csv, 7924 entries.\n", | |
| "Appended to output/by_route/168.csv, 9576 entries.\n", | |
| "Appended to output/by_route/322.csv, 5048 entries.\n", | |
| "Appended to output/by_route/234.csv, 285 entries.\n", | |
| "Appended to output/by_route/376.csv, 8717 entries.\n", | |
| "Appended to output/by_route/317.csv, 5122 entries.\n", | |
| "Appended to output/by_route/315.csv, 8939 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_route/331.csv, 4519 entries.\n", | |
| "Appended to output/by_route/120.csv, 13883 entries.\n", | |
| "Appended to output/by_route/169.csv, 4021 entries.\n", | |
| "Appended to output/by_route/291.csv, 9660 entries.\n", | |
| "Appended to output/by_route/256.csv, 12533 entries.\n", | |
| "Appended to output/by_route/87.csv, 4629 entries.\n", | |
| "Appended to output/by_route/109.csv, 3721 entries.\n", | |
| "Appended to output/by_route/347.csv, 6473 entries.\n", | |
| "Appended to output/by_route/VJR2.csv, 5774 entries.\n", | |
| "Appended to output/by_route/305.csv, 14638 entries.\n", | |
| "Appended to output/by_route/43.csv, 4216 entries.\n", | |
| "Appended to output/by_route/VJR3.csv, 1783 entries.\n", | |
| "Appended to output/by_route/38.csv, 4377 entries.\n", | |
| "Appended to output/by_route/282.csv, 2910 entries.\n", | |
| "Appended to output/by_route/125.csv, 2775 entries.\n", | |
| "Appended to output/by_route/181.csv, 2478 entries.\n", | |
| "Appended to output/by_route/360.csv, 1545 entries.\n", | |
| "Appended to output/by_route/123.csv, 10526 entries.\n", | |
| "Appended to output/by_route/301.csv, 12740 entries.\n", | |
| "Appended to output/by_route/148.csv, 11517 entries.\n", | |
| "Appended to output/by_route/197.csv, 4572 entries.\n", | |
| "Appended to output/by_route/357.csv, 7005 entries.\n", | |
| "Appended to output/by_route/19.csv, 18417 entries.\n", | |
| "Appended to output/by_route/155.csv, 14982 entries.\n", | |
| "Appended to output/by_route/187.csv, 8713 entries.\n", | |
| "Appended to output/by_route/VJR6.csv, 935 entries.\n", | |
| "Appended to output/by_route/216.csv, 1810 entries.\n", | |
| "Appended to output/by_route/121.csv, 3534 entries.\n", | |
| "Appended to output/by_route/110.csv, 4408 entries.\n", | |
| "Appended to output/by_route/355.csv, 2310 entries.\n", | |
| "Appended to output/by_route/133.csv, 4292 entries.\n", | |
| "Appended to output/by_route/100.csv, 673 entries.\n", | |
| "Appended to output/by_route/163.csv, 2692 entries.\n", | |
| "Appended to output/by_route/52.csv, 3849 entries.\n", | |
| "Appended to output/by_route/41.csv, 1475 entries.\n", | |
| "Appended to output/by_route/119.csv, 2191 entries.\n", | |
| "Appended to output/by_route/191.csv, 1806 entries.\n", | |
| "Appended to output/by_route/195.csv, 947 entries.\n", | |
| "Appended to output/by_route/140.csv, 6648 entries.\n", | |
| "Appended to output/by_route/71.csv, 439 entries.\n", | |
| "Appended to output/by_route/284.csv, 6996 entries.\n", | |
| "Appended to output/by_route/302B.csv, 4 entries.\n", | |
| "Appended to output/by_route/154.csv, 1582 entries.\n", | |
| "Appended to output/by_route/159.csv, 1364 entries.\n", | |
| "Appended to output/by_route/118.csv, 5664 entries.\n", | |
| "Appended to output/by_route/186A.csv, 1306 entries.\n", | |
| "Appended to output/by_route/215.csv, 8701 entries.\n", | |
| "Appended to output/by_route/118B.csv, 3271 entries.\n", | |
| "Appended to output/by_route/207.csv, 14006 entries.\n", | |
| "Appended to output/by_route/367.csv, 6906 entries.\n", | |
| "Appended to output/by_route/170.csv, 3307 entries.\n", | |
| "Appended to output/by_route/126.csv, 2402 entries.\n", | |
| "Appended to output/by_route/369.csv, 3550 entries.\n", | |
| "Appended to output/by_route/217.csv, 796 entries.\n", | |
| "Appended to output/by_route/314.csv, 5526 entries.\n", | |
| "Appended to output/by_route/180.csv, 7549 entries.\n", | |
| "Appended to output/by_route/84.csv, 3933 entries.\n", | |
| "Appended to output/by_route/337.csv, 1889 entries.\n", | |
| "Appended to output/by_route/91.csv, 129 entries.\n", | |
| "Appended to output/by_route/201.csv, 8179 entries.\n", | |
| "Appended to output/by_route/303.csv, 6889 entries.\n", | |
| "Appended to output/by_route/13.csv, 8226 entries.\n", | |
| "Appended to output/by_route/188.csv, 59 entries.\n", | |
| "Appended to output/by_route/69.csv, 1831 entries.\n", | |
| "Appended to output/by_route/186.csv, 3294 entries.\n", | |
| "Appended to output/by_route/158.csv, 6080 entries.\n", | |
| "Appended to output/by_route/367C.csv, 490 entries.\n", | |
| "Appended to output/by_route/363A.csv, 118 entries.\n", | |
| "Appended to output/by_route/50.csv, 3878 entries.\n", | |
| "Appended to output/by_route/166.csv, 432 entries.\n", | |
| "Appended to output/by_route/204.csv, 1883 entries.\n", | |
| "Appended to output/by_route/162.csv, 1557 entries.\n", | |
| "Appended to output/by_route/58.csv, 5512 entries.\n", | |
| "Appended to output/by_route/165.csv, 2019 entries.\n", | |
| "Appended to output/by_route/346.csv, 3698 entries.\n", | |
| "Appended to output/by_route/142.csv, 3447 entries.\n", | |
| "Appended to output/by_route/205.csv, 4247 entries.\n", | |
| "Appended to output/by_route/143.csv, 1033 entries.\n", | |
| "Appended to output/by_route/206.csv, 2088 entries.\n", | |
| "Appended to output/by_route/19D.csv, 835 entries.\n", | |
| "Appended to output/by_route/68S.csv, 1882 entries.\n", | |
| "Appended to output/by_route/149.csv, 251 entries.\n", | |
| "Appended to output/by_route/136.csv, 670 entries.\n", | |
| "Appended to output/by_route/85.csv, 3248 entries.\n", | |
| "Appended to output/by_route/19A.csv, 228 entries.\n", | |
| "Appended to output/by_route/327.csv, 1972 entries.\n", | |
| "Created output/by_route/113.csv, 1908 entries.\n", | |
| "Appended to output/by_route/340.csv, 3411 entries.\n", | |
| "Appended to output/by_route/22.csv, 690 entries.\n", | |
| "Appended to output/by_route/77.csv, 9 entries.\n", | |
| "Appended to output/by_route/302A(New).csv, 535 entries.\n", | |
| "Appended to output/by_route/145A.csv, 2237 entries.\n", | |
| "Appended to output/by_route/148A.csv, 2565 entries.\n", | |
| "Appended to output/by_route/302D.csv, 704 entries.\n", | |
| "Appended to output/by_route/63.csv, 2913 entries.\n", | |
| "Appended to output/by_route/190.csv, 209 entries.\n", | |
| "Appended to output/by_route/264.csv, 1003 entries.\n", | |
| "Appended to output/by_route/101.csv, 1260 entries.\n", | |
| "Appended to output/by_route/2.csv, 11731 entries.\n", | |
| "Appended to output/by_route/VJR5.csv, 323 entries.\n", | |
| "Appended to output/by_route/122.csv, 674 entries.\n", | |
| "Appended to output/by_route/76.csv, 1123 entries.\n", | |
| "Appended to output/by_route/158A(NEW).csv, 382 entries.\n", | |
| "Appended to output/by_route/108.csv, 3436 entries.\n", | |
| "Created output/by_route/26.csv, 86 entries.\n", | |
| "Appended to output/by_route/192.csv, 3171 entries.\n", | |
| "Appended to output/by_route/213.csv, 148 entries.\n", | |
| "Appended to output/by_route/30.csv, 4144 entries.\n", | |
| "Appended to output/by_route/363.csv, 529 entries.\n", | |
| "Appended to output/by_route/292.csv, 1291 entries.\n", | |
| "Appended to output/by_route/299.csv, 2493 entries.\n", | |
| "Appended to output/by_route/102.csv, 842 entries.\n", | |
| "Appended to output/by_route/115P.csv, 238 entries.\n", | |
| "Appended to output/by_route/107.csv, 2816 entries.\n", | |
| "Appended to output/by_route/257.csv, 144 entries.\n", | |
| "Appended to output/by_route/128.csv, 2820 entries.\n", | |
| "Appended to output/by_route/326.csv, 748 entries.\n", | |
| "Appended to output/by_route/33.csv, 3202 entries.\n", | |
| "Appended to output/by_route/14.csv, 3938 entries.\n", | |
| "Appended to output/by_route/277A.csv, 1938 entries.\n", | |
| "Appended to output/by_route/117A.csv, 1175 entries.\n", | |
| "Appended to output/by_route/27.csv, 8710 entries.\n", | |
| "Appended to output/by_route/332.csv, 2978 entries.\n", | |
| "Appended to output/by_route/50B.csv, 611 entries.\n", | |
| "Appended to output/by_route/279.csv, 648 entries.\n", | |
| "Appended to output/by_route/297.csv, 2089 entries.\n", | |
| "Appended to output/by_route/501.csv, 2904 entries.\n", | |
| "Appended to output/by_route/70A.csv, 4545 entries.\n", | |
| "Created output/by_route/335.csv, 167 entries.\n", | |
| "Appended to output/by_route/323B.csv, 57 entries.\n", | |
| "Appended to output/by_route/87F.csv, 2456 entries.\n", | |
| "Appended to output/by_route/379.csv, 894 entries.\n", | |
| "Appended to output/by_route/85A.csv, 346 entries.\n", | |
| "Appended to output/by_route/51.csv, 60 entries.\n", | |
| "Appended to output/by_route/374.csv, 269 entries.\n", | |
| "Appended to output/by_route/304.csv, 29 entries.\n", | |
| "Appended to output/by_route/237.csv, 526 entries.\n", | |
| "Appended to output/by_route/13A.csv, 1583 entries.\n", | |
| "Appended to output/by_route/22A.csv, 253 entries.\n", | |
| "Appended to output/by_route/304A.csv, 68 entries.\n", | |
| "Appended to output/by_route/310.csv, 1216 entries.\n", | |
| "Created output/by_route/21.csv, 35 entries.\n", | |
| "Appended to output/by_route/316.csv, 457 entries.\n", | |
| "Appended to output/by_route/295.csv, 44 entries.\n", | |
| "Created output/by_route/117C.csv, 429 entries.\n", | |
| "Appended to output/by_route/209.csv, 1008 entries.\n", | |
| "Appended to output/by_route/203P.csv, 1862 entries.\n", | |
| "Appended to output/by_route/141.csv, 523 entries.\n", | |
| "Appended to output/by_route/189.csv, 541 entries.\n", | |
| "Appended to output/by_route/335A.csv, 365 entries.\n", | |
| "Created output/by_route/60.csv, 1289 entries.\n", | |
| "Created output/by_route/105.csv, 596 entries.\n", | |
| "Appended to output/by_route/175.csv, 497 entries.\n", | |
| "Created output/by_route/116.csv, 156 entries.\n", | |
| "Created output/by_route/233.csv, 83 entries.\n", | |
| "Created output/by_route/84B.csv, 134 entries.\n", | |
| "Appended to output/by_route/305B.csv, 193 entries.\n", | |
| "Created output/by_route/39.csv, 141 entries.\n", | |
| "Created output/by_route/147.csv, 100 entries.\n", | |
| "Created output/by_route/47.csv, 101 entries.\n", | |
| "Vehicles: ['CNG142', 'CNG321', 'CNG475', 'R631', 'R634', 'R635', '1724', '1214', '1107', 'CNG370', '903', '893', '1695', 'CNG366', '576', '574', '587', '582', '609', '610', '657', '648', '653', '642', '685', '622', '597', '601', '633', '654', 'CNG210', '721', '734', '488', 'R471', 'R370', 'R474', 'P170', 'R325', '1002', '1006', '1015', '1062', '1112', '1149', '1169', '1206', '1210', '1230', '1262', '1264', '1276', '1284', '1291', '1294', '1447', '1449', '1474', '1481', '1498', '1534', '1566', '1714', '1803', 'CNG01', 'CNG20', 'CNG51', 'R119', 'CNG323', 'CNG421', 'CNG124', 'CNG446', 'CNG103', 'CNG144', 'CNG93', 'CNG52', 'CNG331', 'CNG482', 'CNG575', 'CNG32', '1569', 'CNG428', 'CNG218', 'CNG111', 'CNG130', 'CNG25', 'CNG445', 'R599', 'R357', 'P182', '909', '998', '1101', '1202', '1209', '1219', '1477', '1565', '1756', '1806', 'CNG34', 'CNG47', 'CNG569', 'CNG324', 'CNG437', 'CNG309', 'CNG343', 'CNG476', 'CNG529', 'R570', '1713', '1142', 'CNG461', 'R609', '554', '1687', 'CNG08', 'CNG317', 'R615', '1720', 'CNG19', 'CNG460', 'CNG582', 'CNG101', 'CNG215', 'P257', 'R514', 'R596', 'R372', 'R241', '938', '1224', '1725', '1124', '1021', 'CNG211', 'CNG422', '1113', '1140', '1184', 'CNG441', '1022', '1116', '1726', '1249', '1465', '1706', 'CNG449', '1564', 'R639', '1471', '1114', 'R608', 'CNG519', 'R434', '1755', 'R398', 'CNG562', 'R393', 'CNG139', 'R417', 'CNG580', '1621', '949', '1128', '1274', '1162', 'CNG72', '965', '1277', '1618', 'CNG228', '1244', 'R259', '663', '1743', 'P198', '1246', '1470', '1747', 'R436', 'CNG526', '1795', '558', '747', '618', '1690', 'R424', '1570', '1482', 'CNG36', 'R366', '735', '1473', '1685', '751', '1000', 'R428', '606', 'CNG494', '1692', '1680', 'R332', '1223', '681', 'R591', '1598', '647', 'CNG477', '1671', 'CNG232', '614', '1273', 'CNG511', '1280', '1172', 'CNG73', '1711', '629', '1293', 'CNG329', 'CNG396', 'CNG33', 'R577', '628', 'CNG91', '599', 'CNG568', 'CNG363', '1578', '602', '1525', '560', '1802', '578', 'CNG328', 'CNG282', '712', 'R573', 'CNG362', '1148', 'R182', '679', 'CNG338', '1579', '944', '559', '623', '621', '677', '1800', '1675', '1662', 'CNG49', '1767', 'R578', 'R594', 'CNG252', 'CNG554', '631', '1075', '1102', '1444', '603', '733', '1242', 'R501', '746', 'CNG385', '732', '1536', '682', '1661', '728', 'R369', '1797', 'R645', '624', 'CNG414', '1278', '617', 'CNG221', 'CNG217', '748', '566', '1175', '705', '577', '729', 'R626', '1571', '1712', '1577', '591', '1238', '1567', '586', '916', '722', '589', '1226', '1783', '605', '1588', 'R274', 'CNG474', '1014', '937', 'CNG150', '754', '608', '1664', '730', '1205', '1028', 'CNG462', '1450', '1011', '1255', 'CNG12', 'CNG443', '467', '652', '1667', 'CNG40', 'CNG376', 'CNG438', 'CNG567', 'R649', '1446', 'R484', '1808', '595', 'CNG31', '1156', 'CNG115', 'P381', '1740', 'P265', 'CNG83', 'CNG80', 'R234', 'CNG510', '1476', 'R402', '1253', 'CNG452', '561', '556', '1787', 'CNG107', 'R246', 'R237', '668', 'R502', 'R517', '723', 'R238', 'CNG163', '981', '584', '613', '616', 'CNG216', '1560', 'R354', '1730', '727', '592', 'CNG530', '596', 'R235', '942', '1526', 'R429', '1790', '1676', '588', '1677', 'CNG164', 'CNG456', 'R367', '664', 'R621', 'CNG413', '1594', '1069', 'P262', '1170', '1543', '1619', '1155', 'CNG454', '1144', '953', 'CNG39', '1267', '1555', 'CNG57', 'CNG44', 'P167', 'CNG522', 'CNG550', '1241', '1781', '1196', '635', '1257', '670', 'CNG543', 'R231', '583', 'R487', '956', '644', 'CNG54', '590', '1132', 'CNG43', '1217', '557', '659', 'CNG07', 'CNG549', 'CNG573', 'CNG229', '984', '1216', 'CNG444', 'CNG551', '709', 'CNG470', 'R600', '947', 'CNG585', 'R192', 'R490', '619', 'CNG555', 'P247', 'R244', 'R489', '1268', 'P260', 'R590', '974', 'BDV 390', 'R368', '666', '1757', 'R311', '1616', '570', 'R336', 'CNG435', '1032', 'R642', 'R630', '600', 'R223', 'CNG487', 'R512', 'R382', 'P179', 'R425', 'R109', '634', '1236', '1005', 'R410', 'CNG372', '715', '612', '1475', '726', 'R547', 'R607', 'R480', 'CNG65', 'CNG214', '702', '562', '939', '1723', 'CNG552', 'CNG319', '1732', '694', '646', 'CNG238', '1752', '202', 'R23', 'CNG541', 'R224', 'R321', 'R426', '915', '1716', 'P389', 'CNG133', 'R506', 'CNG350', '585', 'CNG566', '1548', '755', 'CNG484', '639', '665', 'R371', 'R252', 'R420', '658', 'CNG114', 'R507', 'R595', '579', '607', 'R309', 'CNG29', '717', 'R257', 'R232', 'R401', '1125', '651', '1098', '662', 'R138', '683', '900', '975', '1557', '1535', 'CNG62', '710', 'R114', '690', 'CNG542', '667', 'CNG135', '641', '698', 'R555', 'R260', '569', 'CNG345', 'P168', 'R427', 'CNG500', '1694', 'CNG311', '1201', 'R320', '1020', '650', '1200', 'R431', '927', '1141', '924']\n", | |
| "Appended to output/by_vehicle/CNG142.csv, 121 entries.\n", | |
| "Appended to output/by_vehicle/CNG321.csv, 905 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/CNG475.csv, 3478 entries.\n", | |
| "Appended to output/by_vehicle/R631.csv, 305 entries.\n", | |
| "Appended to output/by_vehicle/R634.csv, 2277 entries.\n", | |
| "Appended to output/by_vehicle/R635.csv, 2441 entries.\n", | |
| "Appended to output/by_vehicle/1724.csv, 3241 entries.\n", | |
| "Appended to output/by_vehicle/1214.csv, 3269 entries.\n", | |
| "Appended to output/by_vehicle/1107.csv, 3225 entries.\n", | |
| "Appended to output/by_vehicle/CNG370.csv, 2795 entries.\n", | |
| "Appended to output/by_vehicle/903.csv, 1418 entries.\n", | |
| "Appended to output/by_vehicle/893.csv, 9851 entries.\n", | |
| "Appended to output/by_vehicle/1695.csv, 7365 entries.\n", | |
| "Appended to output/by_vehicle/CNG366.csv, 2223 entries.\n", | |
| "Appended to output/by_vehicle/576.csv, 1397 entries.\n", | |
| "Appended to output/by_vehicle/574.csv, 4000 entries.\n", | |
| "Appended to output/by_vehicle/587.csv, 4611 entries.\n", | |
| "Appended to output/by_vehicle/582.csv, 4602 entries.\n", | |
| "Appended to output/by_vehicle/609.csv, 873 entries.\n", | |
| "Appended to output/by_vehicle/610.csv, 3794 entries.\n", | |
| "Appended to output/by_vehicle/657.csv, 725 entries.\n", | |
| "Appended to output/by_vehicle/648.csv, 2774 entries.\n", | |
| "Appended to output/by_vehicle/653.csv, 1514 entries.\n", | |
| "Appended to output/by_vehicle/642.csv, 2323 entries.\n", | |
| "Appended to output/by_vehicle/685.csv, 159 entries.\n", | |
| "Appended to output/by_vehicle/622.csv, 1709 entries.\n", | |
| "Appended to output/by_vehicle/597.csv, 4227 entries.\n", | |
| "Appended to output/by_vehicle/601.csv, 2408 entries.\n", | |
| "Appended to output/by_vehicle/633.csv, 1022 entries.\n", | |
| "Appended to output/by_vehicle/654.csv, 376 entries.\n", | |
| "Appended to output/by_vehicle/CNG210.csv, 5974 entries.\n", | |
| "Appended to output/by_vehicle/721.csv, 1725 entries.\n", | |
| "Appended to output/by_vehicle/734.csv, 3572 entries.\n", | |
| "Appended to output/by_vehicle/488.csv, 7257 entries.\n", | |
| "Appended to output/by_vehicle/R471.csv, 1248 entries.\n", | |
| "Appended to output/by_vehicle/R370.csv, 1254 entries.\n", | |
| "Appended to output/by_vehicle/R474.csv, 779 entries.\n", | |
| "Appended to output/by_vehicle/P170.csv, 605 entries.\n", | |
| "Appended to output/by_vehicle/R325.csv, 336 entries.\n", | |
| "Appended to output/by_vehicle/1002.csv, 7799 entries.\n", | |
| "Appended to output/by_vehicle/1006.csv, 438 entries.\n", | |
| "Appended to output/by_vehicle/1015.csv, 4310 entries.\n", | |
| "Appended to output/by_vehicle/1062.csv, 2835 entries.\n", | |
| "Appended to output/by_vehicle/1112.csv, 6082 entries.\n", | |
| "Appended to output/by_vehicle/1149.csv, 3384 entries.\n", | |
| "Appended to output/by_vehicle/1169.csv, 4435 entries.\n", | |
| "Appended to output/by_vehicle/1206.csv, 5381 entries.\n", | |
| "Appended to output/by_vehicle/1210.csv, 8683 entries.\n", | |
| "Appended to output/by_vehicle/1230.csv, 1242 entries.\n", | |
| "Appended to output/by_vehicle/1262.csv, 4101 entries.\n", | |
| "Appended to output/by_vehicle/1264.csv, 1418 entries.\n", | |
| "Appended to output/by_vehicle/1276.csv, 2525 entries.\n", | |
| "Appended to output/by_vehicle/1284.csv, 1200 entries.\n", | |
| "Appended to output/by_vehicle/1291.csv, 2769 entries.\n", | |
| "Appended to output/by_vehicle/1294.csv, 2469 entries.\n", | |
| "Appended to output/by_vehicle/1447.csv, 2510 entries.\n", | |
| "Appended to output/by_vehicle/1449.csv, 6177 entries.\n", | |
| "Appended to output/by_vehicle/1474.csv, 5760 entries.\n", | |
| "Appended to output/by_vehicle/1481.csv, 3355 entries.\n", | |
| "Appended to output/by_vehicle/1498.csv, 1694 entries.\n", | |
| "Appended to output/by_vehicle/1534.csv, 6255 entries.\n", | |
| "Appended to output/by_vehicle/1566.csv, 2697 entries.\n", | |
| "Appended to output/by_vehicle/1714.csv, 3419 entries.\n", | |
| "Appended to output/by_vehicle/1803.csv, 2708 entries.\n", | |
| "Appended to output/by_vehicle/CNG01.csv, 6899 entries.\n", | |
| "Appended to output/by_vehicle/CNG20.csv, 7157 entries.\n", | |
| "Appended to output/by_vehicle/CNG51.csv, 3779 entries.\n", | |
| "Appended to output/by_vehicle/R119.csv, 863 entries.\n", | |
| "Appended to output/by_vehicle/CNG323.csv, 175 entries.\n", | |
| "Appended to output/by_vehicle/CNG421.csv, 7071 entries.\n", | |
| "Appended to output/by_vehicle/CNG124.csv, 5088 entries.\n", | |
| "Appended to output/by_vehicle/CNG446.csv, 4063 entries.\n", | |
| "Appended to output/by_vehicle/CNG103.csv, 3041 entries.\n", | |
| "Appended to output/by_vehicle/CNG144.csv, 8251 entries.\n", | |
| "Appended to output/by_vehicle/CNG93.csv, 3625 entries.\n", | |
| "Appended to output/by_vehicle/CNG52.csv, 1632 entries.\n", | |
| "Appended to output/by_vehicle/CNG331.csv, 1947 entries.\n", | |
| "Appended to output/by_vehicle/CNG482.csv, 3397 entries.\n", | |
| "Appended to output/by_vehicle/CNG575.csv, 3030 entries.\n", | |
| "Appended to output/by_vehicle/CNG32.csv, 1832 entries.\n", | |
| "Appended to output/by_vehicle/1569.csv, 1650 entries.\n", | |
| "Appended to output/by_vehicle/CNG428.csv, 1015 entries.\n", | |
| "Appended to output/by_vehicle/CNG218.csv, 2153 entries.\n", | |
| "Appended to output/by_vehicle/CNG111.csv, 3402 entries.\n", | |
| "Appended to output/by_vehicle/CNG130.csv, 34 entries.\n", | |
| "Appended to output/by_vehicle/CNG25.csv, 2976 entries.\n", | |
| "Appended to output/by_vehicle/CNG445.csv, 6473 entries.\n", | |
| "Appended to output/by_vehicle/R599.csv, 1637 entries.\n", | |
| "Appended to output/by_vehicle/R357.csv, 2100 entries.\n", | |
| "Appended to output/by_vehicle/P182.csv, 1447 entries.\n", | |
| "Appended to output/by_vehicle/909.csv, 2125 entries.\n", | |
| "Appended to output/by_vehicle/998.csv, 3674 entries.\n", | |
| "Appended to output/by_vehicle/1101.csv, 2887 entries.\n", | |
| "Appended to output/by_vehicle/1202.csv, 2794 entries.\n", | |
| "Appended to output/by_vehicle/1209.csv, 721 entries.\n", | |
| "Appended to output/by_vehicle/1219.csv, 5369 entries.\n", | |
| "Appended to output/by_vehicle/1477.csv, 626 entries.\n", | |
| "Appended to output/by_vehicle/1565.csv, 1361 entries.\n", | |
| "Appended to output/by_vehicle/1756.csv, 3252 entries.\n", | |
| "Appended to output/by_vehicle/1806.csv, 1591 entries.\n", | |
| "Appended to output/by_vehicle/CNG34.csv, 1753 entries.\n", | |
| "Appended to output/by_vehicle/CNG47.csv, 3023 entries.\n", | |
| "Appended to output/by_vehicle/CNG569.csv, 1620 entries.\n", | |
| "Appended to output/by_vehicle/CNG324.csv, 997 entries.\n", | |
| "Appended to output/by_vehicle/CNG437.csv, 7428 entries.\n", | |
| "Appended to output/by_vehicle/CNG309.csv, 7368 entries.\n", | |
| "Appended to output/by_vehicle/CNG343.csv, 3320 entries.\n", | |
| "Appended to output/by_vehicle/CNG476.csv, 3773 entries.\n", | |
| "Appended to output/by_vehicle/CNG529.csv, 4740 entries.\n", | |
| "Appended to output/by_vehicle/R570.csv, 1321 entries.\n", | |
| "Appended to output/by_vehicle/1713.csv, 5712 entries.\n", | |
| "Appended to output/by_vehicle/1142.csv, 1494 entries.\n", | |
| "Appended to output/by_vehicle/CNG461.csv, 3620 entries.\n", | |
| "Appended to output/by_vehicle/R609.csv, 935 entries.\n", | |
| "Appended to output/by_vehicle/554.csv, 1810 entries.\n", | |
| "Appended to output/by_vehicle/1687.csv, 2638 entries.\n", | |
| "Appended to output/by_vehicle/CNG08.csv, 4348 entries.\n", | |
| "Appended to output/by_vehicle/CNG317.csv, 1943 entries.\n", | |
| "Appended to output/by_vehicle/R615.csv, 974 entries.\n", | |
| "Appended to output/by_vehicle/1720.csv, 7878 entries.\n", | |
| "Appended to output/by_vehicle/CNG19.csv, 1153 entries.\n", | |
| "Appended to output/by_vehicle/CNG460.csv, 2729 entries.\n", | |
| "Appended to output/by_vehicle/CNG582.csv, 1927 entries.\n", | |
| "Appended to output/by_vehicle/CNG101.csv, 2098 entries.\n", | |
| "Appended to output/by_vehicle/CNG215.csv, 579 entries.\n", | |
| "Appended to output/by_vehicle/P257.csv, 2854 entries.\n", | |
| "Appended to output/by_vehicle/R514.csv, 412 entries.\n", | |
| "Appended to output/by_vehicle/R596.csv, 80 entries.\n", | |
| "Appended to output/by_vehicle/R372.csv, 482 entries.\n", | |
| "Appended to output/by_vehicle/R241.csv, 2064 entries.\n", | |
| "Appended to output/by_vehicle/938.csv, 186 entries.\n", | |
| "Appended to output/by_vehicle/1224.csv, 3360 entries.\n", | |
| "Appended to output/by_vehicle/1725.csv, 1129 entries.\n", | |
| "Appended to output/by_vehicle/1124.csv, 2831 entries.\n", | |
| "Appended to output/by_vehicle/1021.csv, 6319 entries.\n", | |
| "Appended to output/by_vehicle/CNG211.csv, 2384 entries.\n", | |
| "Appended to output/by_vehicle/CNG422.csv, 1134 entries.\n", | |
| "Appended to output/by_vehicle/1113.csv, 2106 entries.\n", | |
| "Appended to output/by_vehicle/1140.csv, 5379 entries.\n", | |
| "Appended to output/by_vehicle/1184.csv, 6560 entries.\n", | |
| "Appended to output/by_vehicle/CNG441.csv, 957 entries.\n", | |
| "Appended to output/by_vehicle/1022.csv, 3204 entries.\n", | |
| "Appended to output/by_vehicle/1116.csv, 2098 entries.\n", | |
| "Appended to output/by_vehicle/1726.csv, 946 entries.\n", | |
| "Appended to output/by_vehicle/1249.csv, 1 entries.\n", | |
| "Appended to output/by_vehicle/1465.csv, 2765 entries.\n", | |
| "Appended to output/by_vehicle/1706.csv, 4624 entries.\n", | |
| "Appended to output/by_vehicle/CNG449.csv, 5632 entries.\n", | |
| "Appended to output/by_vehicle/1564.csv, 2157 entries.\n", | |
| "Appended to output/by_vehicle/R639.csv, 1479 entries.\n", | |
| "Appended to output/by_vehicle/1471.csv, 5918 entries.\n", | |
| "Appended to output/by_vehicle/1114.csv, 2398 entries.\n", | |
| "Appended to output/by_vehicle/R608.csv, 865 entries.\n", | |
| "Appended to output/by_vehicle/CNG519.csv, 4 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/R434.csv, 291 entries.\n", | |
| "Appended to output/by_vehicle/1755.csv, 2615 entries.\n", | |
| "Appended to output/by_vehicle/R398.csv, 25 entries.\n", | |
| "Appended to output/by_vehicle/CNG562.csv, 2136 entries.\n", | |
| "Appended to output/by_vehicle/R393.csv, 102 entries.\n", | |
| "Appended to output/by_vehicle/CNG139.csv, 448 entries.\n", | |
| "Appended to output/by_vehicle/R417.csv, 820 entries.\n", | |
| "Appended to output/by_vehicle/CNG580.csv, 1085 entries.\n", | |
| "Appended to output/by_vehicle/1621.csv, 501 entries.\n", | |
| "Appended to output/by_vehicle/949.csv, 3274 entries.\n", | |
| "Appended to output/by_vehicle/1128.csv, 588 entries.\n", | |
| "Appended to output/by_vehicle/1274.csv, 4143 entries.\n", | |
| "Appended to output/by_vehicle/1162.csv, 4567 entries.\n", | |
| "Appended to output/by_vehicle/CNG72.csv, 2730 entries.\n", | |
| "Appended to output/by_vehicle/965.csv, 1056 entries.\n", | |
| "Appended to output/by_vehicle/1277.csv, 559 entries.\n", | |
| "Appended to output/by_vehicle/1618.csv, 5996 entries.\n", | |
| "Appended to output/by_vehicle/CNG228.csv, 5351 entries.\n", | |
| "Appended to output/by_vehicle/1244.csv, 3799 entries.\n", | |
| "Appended to output/by_vehicle/R259.csv, 350 entries.\n", | |
| "Appended to output/by_vehicle/663.csv, 3610 entries.\n", | |
| "Appended to output/by_vehicle/1743.csv, 3653 entries.\n", | |
| "Appended to output/by_vehicle/P198.csv, 574 entries.\n", | |
| "Appended to output/by_vehicle/1246.csv, 5334 entries.\n", | |
| "Appended to output/by_vehicle/1470.csv, 7050 entries.\n", | |
| "Appended to output/by_vehicle/1747.csv, 3617 entries.\n", | |
| "Appended to output/by_vehicle/R436.csv, 244 entries.\n", | |
| "Appended to output/by_vehicle/CNG526.csv, 5149 entries.\n", | |
| "Appended to output/by_vehicle/1795.csv, 778 entries.\n", | |
| "Appended to output/by_vehicle/558.csv, 3890 entries.\n", | |
| "Appended to output/by_vehicle/747.csv, 1811 entries.\n", | |
| "Appended to output/by_vehicle/618.csv, 3236 entries.\n", | |
| "Appended to output/by_vehicle/1690.csv, 1418 entries.\n", | |
| "Appended to output/by_vehicle/R424.csv, 155 entries.\n", | |
| "Appended to output/by_vehicle/1570.csv, 7213 entries.\n", | |
| "Appended to output/by_vehicle/1482.csv, 1078 entries.\n", | |
| "Appended to output/by_vehicle/CNG36.csv, 2402 entries.\n", | |
| "Appended to output/by_vehicle/R366.csv, 85 entries.\n", | |
| "Appended to output/by_vehicle/735.csv, 3431 entries.\n", | |
| "Appended to output/by_vehicle/1473.csv, 364 entries.\n", | |
| "Appended to output/by_vehicle/1685.csv, 1088 entries.\n", | |
| "Appended to output/by_vehicle/751.csv, 3390 entries.\n", | |
| "Appended to output/by_vehicle/1000.csv, 7059 entries.\n", | |
| "Appended to output/by_vehicle/R428.csv, 57 entries.\n", | |
| "Appended to output/by_vehicle/606.csv, 5526 entries.\n", | |
| "Appended to output/by_vehicle/CNG494.csv, 2170 entries.\n", | |
| "Appended to output/by_vehicle/1692.csv, 2524 entries.\n", | |
| "Appended to output/by_vehicle/1680.csv, 2908 entries.\n", | |
| "Appended to output/by_vehicle/R332.csv, 286 entries.\n", | |
| "Appended to output/by_vehicle/1223.csv, 1512 entries.\n", | |
| "Appended to output/by_vehicle/681.csv, 1895 entries.\n", | |
| "Appended to output/by_vehicle/R591.csv, 1430 entries.\n", | |
| "Appended to output/by_vehicle/1598.csv, 1405 entries.\n", | |
| "Appended to output/by_vehicle/647.csv, 129 entries.\n", | |
| "Appended to output/by_vehicle/CNG477.csv, 3285 entries.\n", | |
| "Appended to output/by_vehicle/1671.csv, 3074 entries.\n", | |
| "Appended to output/by_vehicle/CNG232.csv, 597 entries.\n", | |
| "Appended to output/by_vehicle/614.csv, 2997 entries.\n", | |
| "Appended to output/by_vehicle/1273.csv, 1357 entries.\n", | |
| "Appended to output/by_vehicle/CNG511.csv, 59 entries.\n", | |
| "Appended to output/by_vehicle/1280.csv, 2760 entries.\n", | |
| "Appended to output/by_vehicle/1172.csv, 3393 entries.\n", | |
| "Appended to output/by_vehicle/CNG73.csv, 4365 entries.\n", | |
| "Appended to output/by_vehicle/1711.csv, 5867 entries.\n", | |
| "Appended to output/by_vehicle/629.csv, 1148 entries.\n", | |
| "Appended to output/by_vehicle/1293.csv, 6177 entries.\n", | |
| "Created output/by_vehicle/CNG329.csv, 34 entries.\n", | |
| "Appended to output/by_vehicle/CNG396.csv, 1451 entries.\n", | |
| "Appended to output/by_vehicle/CNG33.csv, 4358 entries.\n", | |
| "Appended to output/by_vehicle/R577.csv, 728 entries.\n", | |
| "Appended to output/by_vehicle/628.csv, 377 entries.\n", | |
| "Appended to output/by_vehicle/CNG91.csv, 897 entries.\n", | |
| "Appended to output/by_vehicle/599.csv, 2644 entries.\n", | |
| "Created output/by_vehicle/CNG568.csv, 8 entries.\n", | |
| "Appended to output/by_vehicle/CNG363.csv, 1855 entries.\n", | |
| "Appended to output/by_vehicle/1578.csv, 4563 entries.\n", | |
| "Appended to output/by_vehicle/602.csv, 118 entries.\n", | |
| "Appended to output/by_vehicle/1525.csv, 2051 entries.\n", | |
| "Appended to output/by_vehicle/560.csv, 2951 entries.\n", | |
| "Appended to output/by_vehicle/1802.csv, 4210 entries.\n", | |
| "Appended to output/by_vehicle/578.csv, 1579 entries.\n", | |
| "Appended to output/by_vehicle/CNG328.csv, 217 entries.\n", | |
| "Appended to output/by_vehicle/CNG282.csv, 14 entries.\n", | |
| "Appended to output/by_vehicle/712.csv, 4037 entries.\n", | |
| "Appended to output/by_vehicle/R573.csv, 1756 entries.\n", | |
| "Appended to output/by_vehicle/CNG362.csv, 1883 entries.\n", | |
| "Appended to output/by_vehicle/1148.csv, 1557 entries.\n", | |
| "Appended to output/by_vehicle/R182.csv, 49 entries.\n", | |
| "Appended to output/by_vehicle/679.csv, 4226 entries.\n", | |
| "Appended to output/by_vehicle/CNG338.csv, 3651 entries.\n", | |
| "Appended to output/by_vehicle/1579.csv, 1552 entries.\n", | |
| "Appended to output/by_vehicle/944.csv, 3408 entries.\n", | |
| "Created output/by_vehicle/559.csv, 583 entries.\n", | |
| "Appended to output/by_vehicle/623.csv, 3698 entries.\n", | |
| "Appended to output/by_vehicle/621.csv, 1490 entries.\n", | |
| "Appended to output/by_vehicle/677.csv, 1076 entries.\n", | |
| "Appended to output/by_vehicle/1800.csv, 1407 entries.\n", | |
| "Appended to output/by_vehicle/1675.csv, 5616 entries.\n", | |
| "Appended to output/by_vehicle/1662.csv, 4718 entries.\n", | |
| "Appended to output/by_vehicle/CNG49.csv, 2389 entries.\n", | |
| "Appended to output/by_vehicle/1767.csv, 77 entries.\n", | |
| "Appended to output/by_vehicle/R578.csv, 872 entries.\n", | |
| "Appended to output/by_vehicle/R594.csv, 352 entries.\n", | |
| "Appended to output/by_vehicle/CNG252.csv, 1041 entries.\n", | |
| "Appended to output/by_vehicle/CNG554.csv, 2009 entries.\n", | |
| "Appended to output/by_vehicle/631.csv, 1543 entries.\n", | |
| "Appended to output/by_vehicle/1075.csv, 456 entries.\n", | |
| "Appended to output/by_vehicle/1102.csv, 1670 entries.\n", | |
| "Appended to output/by_vehicle/1444.csv, 1866 entries.\n", | |
| "Appended to output/by_vehicle/603.csv, 2837 entries.\n", | |
| "Appended to output/by_vehicle/733.csv, 29 entries.\n", | |
| "Appended to output/by_vehicle/1242.csv, 1224 entries.\n", | |
| "Appended to output/by_vehicle/R501.csv, 1054 entries.\n", | |
| "Appended to output/by_vehicle/746.csv, 1161 entries.\n", | |
| "Appended to output/by_vehicle/CNG385.csv, 238 entries.\n", | |
| "Appended to output/by_vehicle/732.csv, 1904 entries.\n", | |
| "Appended to output/by_vehicle/1536.csv, 1696 entries.\n", | |
| "Appended to output/by_vehicle/682.csv, 1882 entries.\n", | |
| "Appended to output/by_vehicle/1661.csv, 5941 entries.\n", | |
| "Created output/by_vehicle/728.csv, 198 entries.\n", | |
| "Appended to output/by_vehicle/R369.csv, 1016 entries.\n", | |
| "Appended to output/by_vehicle/1797.csv, 1398 entries.\n", | |
| "Appended to output/by_vehicle/R645.csv, 947 entries.\n", | |
| "Appended to output/by_vehicle/624.csv, 1223 entries.\n", | |
| "Appended to output/by_vehicle/CNG414.csv, 4309 entries.\n", | |
| "Appended to output/by_vehicle/1278.csv, 1 entries.\n", | |
| "Appended to output/by_vehicle/617.csv, 296 entries.\n", | |
| "Appended to output/by_vehicle/CNG221.csv, 973 entries.\n", | |
| "Appended to output/by_vehicle/CNG217.csv, 211 entries.\n", | |
| "Appended to output/by_vehicle/748.csv, 882 entries.\n", | |
| "Created output/by_vehicle/566.csv, 1466 entries.\n", | |
| "Appended to output/by_vehicle/1175.csv, 4059 entries.\n", | |
| "Appended to output/by_vehicle/705.csv, 2345 entries.\n", | |
| "Appended to output/by_vehicle/577.csv, 4138 entries.\n", | |
| "Appended to output/by_vehicle/729.csv, 234 entries.\n", | |
| "Appended to output/by_vehicle/R626.csv, 390 entries.\n", | |
| "Appended to output/by_vehicle/1571.csv, 3594 entries.\n", | |
| "Appended to output/by_vehicle/1712.csv, 1815 entries.\n", | |
| "Appended to output/by_vehicle/1577.csv, 1162 entries.\n", | |
| "Appended to output/by_vehicle/591.csv, 2524 entries.\n", | |
| "Appended to output/by_vehicle/1238.csv, 1030 entries.\n", | |
| "Appended to output/by_vehicle/1567.csv, 1242 entries.\n", | |
| "Appended to output/by_vehicle/586.csv, 1533 entries.\n", | |
| "Appended to output/by_vehicle/916.csv, 1364 entries.\n", | |
| "Appended to output/by_vehicle/722.csv, 3785 entries.\n", | |
| "Appended to output/by_vehicle/589.csv, 1908 entries.\n", | |
| "Appended to output/by_vehicle/1226.csv, 486 entries.\n", | |
| "Appended to output/by_vehicle/1783.csv, 2358 entries.\n", | |
| "Appended to output/by_vehicle/605.csv, 3411 entries.\n", | |
| "Appended to output/by_vehicle/1588.csv, 952 entries.\n", | |
| "Appended to output/by_vehicle/R274.csv, 2315 entries.\n", | |
| "Appended to output/by_vehicle/CNG474.csv, 3102 entries.\n", | |
| "Appended to output/by_vehicle/1014.csv, 1524 entries.\n", | |
| "Appended to output/by_vehicle/937.csv, 1055 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/CNG150.csv, 1153 entries.\n", | |
| "Appended to output/by_vehicle/754.csv, 359 entries.\n", | |
| "Appended to output/by_vehicle/608.csv, 2695 entries.\n", | |
| "Appended to output/by_vehicle/1664.csv, 866 entries.\n", | |
| "Appended to output/by_vehicle/730.csv, 535 entries.\n", | |
| "Appended to output/by_vehicle/1205.csv, 3441 entries.\n", | |
| "Appended to output/by_vehicle/1028.csv, 1228 entries.\n", | |
| "Created output/by_vehicle/CNG462.csv, 1967 entries.\n", | |
| "Appended to output/by_vehicle/1450.csv, 3442 entries.\n", | |
| "Appended to output/by_vehicle/1011.csv, 1534 entries.\n", | |
| "Appended to output/by_vehicle/1255.csv, 4595 entries.\n", | |
| "Appended to output/by_vehicle/CNG12.csv, 2553 entries.\n", | |
| "Appended to output/by_vehicle/CNG443.csv, 807 entries.\n", | |
| "Created output/by_vehicle/467.csv, 79 entries.\n", | |
| "Appended to output/by_vehicle/652.csv, 3034 entries.\n", | |
| "Appended to output/by_vehicle/1667.csv, 123 entries.\n", | |
| "Appended to output/by_vehicle/CNG40.csv, 1003 entries.\n", | |
| "Created output/by_vehicle/CNG376.csv, 468 entries.\n", | |
| "Created output/by_vehicle/CNG438.csv, 1110 entries.\n", | |
| "Appended to output/by_vehicle/CNG567.csv, 212 entries.\n", | |
| "Created output/by_vehicle/R649.csv, 42 entries.\n", | |
| "Appended to output/by_vehicle/1446.csv, 206 entries.\n", | |
| "Created output/by_vehicle/R484.csv, 36 entries.\n", | |
| "Appended to output/by_vehicle/1808.csv, 1528 entries.\n", | |
| "Appended to output/by_vehicle/595.csv, 2037 entries.\n", | |
| "Appended to output/by_vehicle/CNG31.csv, 3842 entries.\n", | |
| "Created output/by_vehicle/1156.csv, 1221 entries.\n", | |
| "Appended to output/by_vehicle/CNG115.csv, 674 entries.\n", | |
| "Appended to output/by_vehicle/P381.csv, 974 entries.\n", | |
| "Appended to output/by_vehicle/1740.csv, 387 entries.\n", | |
| "Appended to output/by_vehicle/P265.csv, 2189 entries.\n", | |
| "Appended to output/by_vehicle/CNG83.csv, 293 entries.\n", | |
| "Appended to output/by_vehicle/CNG80.csv, 1125 entries.\n", | |
| "Appended to output/by_vehicle/R234.csv, 703 entries.\n", | |
| "Appended to output/by_vehicle/CNG510.csv, 2997 entries.\n", | |
| "Appended to output/by_vehicle/1476.csv, 319 entries.\n", | |
| "Created output/by_vehicle/R402.csv, 231 entries.\n", | |
| "Appended to output/by_vehicle/1253.csv, 2795 entries.\n", | |
| "Appended to output/by_vehicle/CNG452.csv, 2257 entries.\n", | |
| "Created output/by_vehicle/561.csv, 614 entries.\n", | |
| "Appended to output/by_vehicle/556.csv, 395 entries.\n", | |
| "Created output/by_vehicle/1787.csv, 86 entries.\n", | |
| "Created output/by_vehicle/CNG107.csv, 79 entries.\n", | |
| "Created output/by_vehicle/R246.csv, 1208 entries.\n", | |
| "Appended to output/by_vehicle/R237.csv, 316 entries.\n", | |
| "Created output/by_vehicle/668.csv, 829 entries.\n", | |
| "Created output/by_vehicle/R502.csv, 84 entries.\n", | |
| "Appended to output/by_vehicle/R517.csv, 551 entries.\n", | |
| "Appended to output/by_vehicle/723.csv, 2192 entries.\n", | |
| "Appended to output/by_vehicle/R238.csv, 196 entries.\n", | |
| "Appended to output/by_vehicle/CNG163.csv, 75 entries.\n", | |
| "Appended to output/by_vehicle/981.csv, 691 entries.\n", | |
| "Appended to output/by_vehicle/584.csv, 1389 entries.\n", | |
| "Appended to output/by_vehicle/613.csv, 529 entries.\n", | |
| "Appended to output/by_vehicle/616.csv, 174 entries.\n", | |
| "Appended to output/by_vehicle/CNG216.csv, 3238 entries.\n", | |
| "Appended to output/by_vehicle/1560.csv, 544 entries.\n", | |
| "Appended to output/by_vehicle/R354.csv, 225 entries.\n", | |
| "Appended to output/by_vehicle/1730.csv, 454 entries.\n", | |
| "Appended to output/by_vehicle/727.csv, 361 entries.\n", | |
| "Appended to output/by_vehicle/592.csv, 726 entries.\n", | |
| "Appended to output/by_vehicle/CNG530.csv, 1441 entries.\n", | |
| "Appended to output/by_vehicle/596.csv, 849 entries.\n", | |
| "Created output/by_vehicle/R235.csv, 166 entries.\n", | |
| "Appended to output/by_vehicle/942.csv, 1285 entries.\n", | |
| "Appended to output/by_vehicle/1526.csv, 235 entries.\n", | |
| "Appended to output/by_vehicle/R429.csv, 238 entries.\n", | |
| "Appended to output/by_vehicle/1790.csv, 531 entries.\n", | |
| "Appended to output/by_vehicle/1676.csv, 711 entries.\n", | |
| "Created output/by_vehicle/588.csv, 533 entries.\n", | |
| "Appended to output/by_vehicle/1677.csv, 1289 entries.\n", | |
| "Appended to output/by_vehicle/CNG164.csv, 1157 entries.\n", | |
| "Appended to output/by_vehicle/CNG456.csv, 1270 entries.\n", | |
| "Appended to output/by_vehicle/R367.csv, 661 entries.\n", | |
| "Created output/by_vehicle/664.csv, 146 entries.\n", | |
| "Appended to output/by_vehicle/R621.csv, 396 entries.\n", | |
| "Created output/by_vehicle/CNG413.csv, 659 entries.\n", | |
| "Appended to output/by_vehicle/1594.csv, 257 entries.\n", | |
| "Appended to output/by_vehicle/1069.csv, 4543 entries.\n", | |
| "Appended to output/by_vehicle/P262.csv, 52 entries.\n", | |
| "Created output/by_vehicle/1170.csv, 6028 entries.\n", | |
| "Appended to output/by_vehicle/1543.csv, 2844 entries.\n", | |
| "Appended to output/by_vehicle/1619.csv, 1175 entries.\n", | |
| "Created output/by_vehicle/1155.csv, 5706 entries.\n", | |
| "Appended to output/by_vehicle/CNG454.csv, 2231 entries.\n", | |
| "Created output/by_vehicle/1144.csv, 2132 entries.\n", | |
| "Appended to output/by_vehicle/953.csv, 611 entries.\n", | |
| "Appended to output/by_vehicle/CNG39.csv, 132 entries.\n", | |
| "Appended to output/by_vehicle/1267.csv, 648 entries.\n", | |
| "Appended to output/by_vehicle/1555.csv, 3506 entries.\n", | |
| "Appended to output/by_vehicle/CNG57.csv, 2345 entries.\n", | |
| "Appended to output/by_vehicle/CNG44.csv, 236 entries.\n", | |
| "Created output/by_vehicle/P167.csv, 276 entries.\n", | |
| "Created output/by_vehicle/CNG522.csv, 1175 entries.\n", | |
| "Appended to output/by_vehicle/CNG550.csv, 729 entries.\n", | |
| "Appended to output/by_vehicle/1241.csv, 2904 entries.\n", | |
| "Appended to output/by_vehicle/1781.csv, 4545 entries.\n", | |
| "Appended to output/by_vehicle/1196.csv, 269 entries.\n", | |
| "Appended to output/by_vehicle/635.csv, 532 entries.\n", | |
| "Created output/by_vehicle/1257.csv, 2309 entries.\n", | |
| "Appended to output/by_vehicle/670.csv, 823 entries.\n", | |
| "Appended to output/by_vehicle/CNG543.csv, 1891 entries.\n", | |
| "Appended to output/by_vehicle/R231.csv, 818 entries.\n", | |
| "Appended to output/by_vehicle/583.csv, 1419 entries.\n", | |
| "Appended to output/by_vehicle/R487.csv, 245 entries.\n", | |
| "Appended to output/by_vehicle/956.csv, 1020 entries.\n", | |
| "Appended to output/by_vehicle/644.csv, 894 entries.\n", | |
| "Appended to output/by_vehicle/CNG54.csv, 374 entries.\n", | |
| "Appended to output/by_vehicle/590.csv, 4437 entries.\n", | |
| "Created output/by_vehicle/1132.csv, 3952 entries.\n", | |
| "Appended to output/by_vehicle/CNG43.csv, 23 entries.\n", | |
| "Appended to output/by_vehicle/1217.csv, 1000 entries.\n", | |
| "Appended to output/by_vehicle/557.csv, 1382 entries.\n", | |
| "Appended to output/by_vehicle/659.csv, 2904 entries.\n", | |
| "Appended to output/by_vehicle/CNG07.csv, 599 entries.\n", | |
| "Appended to output/by_vehicle/CNG549.csv, 1153 entries.\n", | |
| "Appended to output/by_vehicle/CNG573.csv, 1666 entries.\n", | |
| "Appended to output/by_vehicle/CNG229.csv, 321 entries.\n", | |
| "Created output/by_vehicle/984.csv, 3306 entries.\n", | |
| "Appended to output/by_vehicle/1216.csv, 964 entries.\n", | |
| "Appended to output/by_vehicle/CNG444.csv, 29 entries.\n", | |
| "Appended to output/by_vehicle/CNG551.csv, 85 entries.\n", | |
| "Appended to output/by_vehicle/709.csv, 2988 entries.\n", | |
| "Created output/by_vehicle/CNG470.csv, 1060 entries.\n", | |
| "Appended to output/by_vehicle/R600.csv, 148 entries.\n", | |
| "Appended to output/by_vehicle/947.csv, 281 entries.\n", | |
| "Appended to output/by_vehicle/CNG585.csv, 217 entries.\n", | |
| "Created output/by_vehicle/R192.csv, 127 entries.\n", | |
| "Appended to output/by_vehicle/R490.csv, 3 entries.\n", | |
| "Appended to output/by_vehicle/619.csv, 91 entries.\n", | |
| "Appended to output/by_vehicle/CNG555.csv, 678 entries.\n", | |
| "Appended to output/by_vehicle/P247.csv, 610 entries.\n", | |
| "Appended to output/by_vehicle/R244.csv, 398 entries.\n", | |
| "Created output/by_vehicle/R489.csv, 527 entries.\n", | |
| "Appended to output/by_vehicle/1268.csv, 138 entries.\n", | |
| "Appended to output/by_vehicle/P260.csv, 161 entries.\n", | |
| "Created output/by_vehicle/R590.csv, 1273 entries.\n", | |
| "Appended to output/by_vehicle/974.csv, 253 entries.\n", | |
| "Created output/by_vehicle/BDV 390.csv, 4601 entries.\n", | |
| "Appended to output/by_vehicle/R368.csv, 702 entries.\n", | |
| "Appended to output/by_vehicle/666.csv, 2097 entries.\n", | |
| "Appended to output/by_vehicle/1757.csv, 2074 entries.\n", | |
| "Appended to output/by_vehicle/R311.csv, 102 entries.\n", | |
| "Appended to output/by_vehicle/1616.csv, 1097 entries.\n", | |
| "Created output/by_vehicle/570.csv, 727 entries.\n", | |
| "Appended to output/by_vehicle/R336.csv, 73 entries.\n", | |
| "Appended to output/by_vehicle/CNG435.csv, 1216 entries.\n", | |
| "Created output/by_vehicle/1032.csv, 239 entries.\n", | |
| "Appended to output/by_vehicle/R642.csv, 408 entries.\n", | |
| "Appended to output/by_vehicle/R630.csv, 314 entries.\n", | |
| "Appended to output/by_vehicle/600.csv, 874 entries.\n", | |
| "Appended to output/by_vehicle/R223.csv, 56 entries.\n", | |
| "Appended to output/by_vehicle/CNG487.csv, 86 entries.\n", | |
| "Appended to output/by_vehicle/R512.csv, 319 entries.\n", | |
| "Created output/by_vehicle/R382.csv, 418 entries.\n", | |
| "Appended to output/by_vehicle/P179.csv, 1278 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/R425.csv, 663 entries.\n", | |
| "Created output/by_vehicle/R109.csv, 35 entries.\n", | |
| "Created output/by_vehicle/634.csv, 457 entries.\n", | |
| "Created output/by_vehicle/1236.csv, 12 entries.\n", | |
| "Appended to output/by_vehicle/1005.csv, 44 entries.\n", | |
| "Appended to output/by_vehicle/R410.csv, 180 entries.\n", | |
| "Created output/by_vehicle/CNG372.csv, 1541 entries.\n", | |
| "Created output/by_vehicle/715.csv, 255 entries.\n", | |
| "Appended to output/by_vehicle/612.csv, 23 entries.\n", | |
| "Created output/by_vehicle/1475.csv, 253 entries.\n", | |
| "Appended to output/by_vehicle/726.csv, 456 entries.\n", | |
| "Created output/by_vehicle/R547.csv, 394 entries.\n", | |
| "Created output/by_vehicle/R607.csv, 732 entries.\n", | |
| "Appended to output/by_vehicle/R480.csv, 319 entries.\n", | |
| "Appended to output/by_vehicle/CNG65.csv, 320 entries.\n", | |
| "Appended to output/by_vehicle/CNG214.csv, 2260 entries.\n", | |
| "Appended to output/by_vehicle/702.csv, 261 entries.\n", | |
| "Appended to output/by_vehicle/562.csv, 768 entries.\n", | |
| "Appended to output/by_vehicle/939.csv, 389 entries.\n", | |
| "Appended to output/by_vehicle/1723.csv, 4147 entries.\n", | |
| "Appended to output/by_vehicle/CNG552.csv, 1043 entries.\n", | |
| "Appended to output/by_vehicle/CNG319.csv, 208 entries.\n", | |
| "Created output/by_vehicle/1732.csv, 1365 entries.\n", | |
| "Appended to output/by_vehicle/694.csv, 1840 entries.\n", | |
| "Appended to output/by_vehicle/646.csv, 523 entries.\n", | |
| "Appended to output/by_vehicle/CNG238.csv, 275 entries.\n", | |
| "Created output/by_vehicle/1752.csv, 1612 entries.\n", | |
| "Created output/by_vehicle/202.csv, 40 entries.\n", | |
| "Created output/by_vehicle/R23.csv, 4 entries.\n", | |
| "Appended to output/by_vehicle/CNG541.csv, 31 entries.\n", | |
| "Appended to output/by_vehicle/R224.csv, 72 entries.\n", | |
| "Appended to output/by_vehicle/R321.csv, 317 entries.\n", | |
| "Appended to output/by_vehicle/R426.csv, 53 entries.\n", | |
| "Appended to output/by_vehicle/915.csv, 694 entries.\n", | |
| "Created output/by_vehicle/1716.csv, 331 entries.\n", | |
| "Created output/by_vehicle/P389.csv, 698 entries.\n", | |
| "Created output/by_vehicle/CNG133.csv, 747 entries.\n", | |
| "Appended to output/by_vehicle/R506.csv, 6 entries.\n", | |
| "Appended to output/by_vehicle/CNG350.csv, 216 entries.\n", | |
| "Created output/by_vehicle/585.csv, 1289 entries.\n", | |
| "Created output/by_vehicle/CNG566.csv, 417 entries.\n", | |
| "Created output/by_vehicle/1548.csv, 2285 entries.\n", | |
| "Appended to output/by_vehicle/755.csv, 421 entries.\n", | |
| "Appended to output/by_vehicle/CNG484.csv, 89 entries.\n", | |
| "Appended to output/by_vehicle/639.csv, 844 entries.\n", | |
| "Appended to output/by_vehicle/665.csv, 497 entries.\n", | |
| "Appended to output/by_vehicle/R371.csv, 300 entries.\n", | |
| "Appended to output/by_vehicle/R252.csv, 305 entries.\n", | |
| "Appended to output/by_vehicle/R420.csv, 526 entries.\n", | |
| "Created output/by_vehicle/658.csv, 869 entries.\n", | |
| "Created output/by_vehicle/CNG114.csv, 77 entries.\n", | |
| "Created output/by_vehicle/R507.csv, 138 entries.\n", | |
| "Appended to output/by_vehicle/R595.csv, 754 entries.\n", | |
| "Created output/by_vehicle/579.csv, 240 entries.\n", | |
| "Appended to output/by_vehicle/607.csv, 147 entries.\n", | |
| "Appended to output/by_vehicle/R309.csv, 322 entries.\n", | |
| "Appended to output/by_vehicle/CNG29.csv, 342 entries.\n", | |
| "Created output/by_vehicle/717.csv, 156 entries.\n", | |
| "Created output/by_vehicle/R257.csv, 8 entries.\n", | |
| "Appended to output/by_vehicle/R232.csv, 597 entries.\n", | |
| "Created output/by_vehicle/R401.csv, 299 entries.\n", | |
| "Appended to output/by_vehicle/1125.csv, 745 entries.\n", | |
| "Appended to output/by_vehicle/651.csv, 240 entries.\n", | |
| "Appended to output/by_vehicle/1098.csv, 83 entries.\n", | |
| "Created output/by_vehicle/662.csv, 183 entries.\n", | |
| "Created output/by_vehicle/R138.csv, 163 entries.\n", | |
| "Created output/by_vehicle/683.csv, 282 entries.\n", | |
| "Created output/by_vehicle/900.csv, 1403 entries.\n", | |
| "Appended to output/by_vehicle/975.csv, 339 entries.\n", | |
| "Created output/by_vehicle/1557.csv, 615 entries.\n", | |
| "Appended to output/by_vehicle/1535.csv, 956 entries.\n", | |
| "Appended to output/by_vehicle/CNG62.csv, 992 entries.\n", | |
| "Appended to output/by_vehicle/710.csv, 447 entries.\n", | |
| "Appended to output/by_vehicle/R114.csv, 193 entries.\n", | |
| "Created output/by_vehicle/690.csv, 395 entries.\n", | |
| "Appended to output/by_vehicle/CNG542.csv, 4 entries.\n", | |
| "Appended to output/by_vehicle/667.csv, 245 entries.\n", | |
| "Appended to output/by_vehicle/CNG135.csv, 244 entries.\n", | |
| "Appended to output/by_vehicle/641.csv, 508 entries.\n", | |
| "Created output/by_vehicle/698.csv, 185 entries.\n", | |
| "Created output/by_vehicle/R555.csv, 228 entries.\n", | |
| "Appended to output/by_vehicle/R260.csv, 67 entries.\n", | |
| "Appended to output/by_vehicle/569.csv, 1045 entries.\n", | |
| "Appended to output/by_vehicle/CNG345.csv, 212 entries.\n", | |
| "Appended to output/by_vehicle/P168.csv, 346 entries.\n", | |
| "Appended to output/by_vehicle/R427.csv, 214 entries.\n", | |
| "Appended to output/by_vehicle/CNG500.csv, 348 entries.\n", | |
| "Created output/by_vehicle/1694.csv, 500 entries.\n", | |
| "Created output/by_vehicle/CNG311.csv, 402 entries.\n", | |
| "Created output/by_vehicle/1201.csv, 264 entries.\n", | |
| "Appended to output/by_vehicle/R320.csv, 82 entries.\n", | |
| "Created output/by_vehicle/1020.csv, 141 entries.\n", | |
| "Appended to output/by_vehicle/650.csv, 632 entries.\n", | |
| "Created output/by_vehicle/1200.csv, 153 entries.\n", | |
| "Appended to output/by_vehicle/R431.csv, 19 entries.\n", | |
| "Created output/by_vehicle/927.csv, 6 entries.\n", | |
| "Created output/by_vehicle/1141.csv, 100 entries.\n", | |
| "Created output/by_vehicle/924.csv, 101 entries.\n", | |
| "Routes: ['348', '140', '139', '276', '202', '207', '147', '47', '5', '64', '368', '215', '314', '303', '56', '309', '361', '59', '117', '145', '58', '13', '13A', '63', '111', '84', 'VJR4', '367', '302', '369', '10', '94', '43', '12', '165', '163', '29', '52', '144', '24', '27', '42', '146', '142', '30', '177', '11', '187', '57', '121', '358', '101', '203', '7A', '151', '301', '41', '70A', '181C', '125', '158', '168', '110', '123', '376', '315', '87F', '291', '197', '208', '256', '201', 'VJR2', '143', '264', '347', '31', '374', '501', '204', '180', '336', 'VJR6', '305', '145A', '103', '174', '372', '107', '282', '37', '148A', '332', '167', '186', '53', '169', '118B', '19', '154', '312', '299', '159', '2', '87', '133', '120', '328', '118', '50B', '298', '191', '55', '357', '170', '331', '181', '155', '284', '192', '109', '126', '122', '337', '85', '97', '322', '281', '39', '148', '205', 'VJR1', '279', '50', '38', '360', 'VJR3', '297', '302A(New)', '195', '335A', '76', '128', '119', '71', '317', '359', '277A', '69', '363A', '162', '166', '340', 'VJR5', '363', '114', '209', '19D', '22A', '113', '327', '77', '206', '190', '68S', '354', '330', '292', '100', '72', '108', '188', '33', '26', '102', '316', '189', '135', '304A', '234', '257', '367C', '149', '51', '117A', '304', '158A(NEW)', '78', '346', '305B', '141', '379', '19A', '85A', '203P', '324', '175', '36', '217', '213', '91', '136', '15', '233', '355', '14', '80', '333', '307', '366', '152']\n", | |
| "Appended to output/by_route/348.csv, 10800 entries.\n", | |
| "Appended to output/by_route/140.csv, 6423 entries.\n", | |
| "Appended to output/by_route/139.csv, 15618 entries.\n", | |
| "Appended to output/by_route/276.csv, 6871 entries.\n", | |
| "Appended to output/by_route/202.csv, 18859 entries.\n", | |
| "Appended to output/by_route/207.csv, 13872 entries.\n", | |
| "Appended to output/by_route/147.csv, 447 entries.\n", | |
| "Appended to output/by_route/47.csv, 1983 entries.\n", | |
| "Appended to output/by_route/5.csv, 40439 entries.\n", | |
| "Appended to output/by_route/64.csv, 24344 entries.\n", | |
| "Appended to output/by_route/368.csv, 13979 entries.\n", | |
| "Appended to output/by_route/215.csv, 6478 entries.\n", | |
| "Appended to output/by_route/314.csv, 3820 entries.\n", | |
| "Appended to output/by_route/303.csv, 5910 entries.\n", | |
| "Appended to output/by_route/56.csv, 6565 entries.\n", | |
| "Appended to output/by_route/309.csv, 9493 entries.\n", | |
| "Appended to output/by_route/361.csv, 3365 entries.\n", | |
| "Appended to output/by_route/59.csv, 7432 entries.\n", | |
| "Appended to output/by_route/117.csv, 3609 entries.\n", | |
| "Appended to output/by_route/145.csv, 5758 entries.\n", | |
| "Appended to output/by_route/58.csv, 5113 entries.\n", | |
| "Appended to output/by_route/13.csv, 7679 entries.\n", | |
| "Appended to output/by_route/13A.csv, 2718 entries.\n", | |
| "Appended to output/by_route/63.csv, 2319 entries.\n", | |
| "Appended to output/by_route/111.csv, 22654 entries.\n", | |
| "Appended to output/by_route/84.csv, 3498 entries.\n", | |
| "Appended to output/by_route/VJR4.csv, 6943 entries.\n", | |
| "Appended to output/by_route/367.csv, 9159 entries.\n", | |
| "Appended to output/by_route/302.csv, 4608 entries.\n", | |
| "Appended to output/by_route/369.csv, 3550 entries.\n", | |
| "Appended to output/by_route/10.csv, 2363 entries.\n", | |
| "Appended to output/by_route/94.csv, 11973 entries.\n", | |
| "Appended to output/by_route/43.csv, 3442 entries.\n", | |
| "Appended to output/by_route/12.csv, 5453 entries.\n", | |
| "Appended to output/by_route/165.csv, 1833 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_route/163.csv, 1815 entries.\n", | |
| "Appended to output/by_route/29.csv, 15119 entries.\n", | |
| "Appended to output/by_route/52.csv, 2939 entries.\n", | |
| "Appended to output/by_route/144.csv, 3471 entries.\n", | |
| "Appended to output/by_route/24.csv, 5788 entries.\n", | |
| "Appended to output/by_route/27.csv, 11826 entries.\n", | |
| "Appended to output/by_route/42.csv, 28908 entries.\n", | |
| "Appended to output/by_route/146.csv, 11952 entries.\n", | |
| "Appended to output/by_route/142.csv, 2669 entries.\n", | |
| "Appended to output/by_route/30.csv, 4216 entries.\n", | |
| "Appended to output/by_route/177.csv, 12841 entries.\n", | |
| "Appended to output/by_route/11.csv, 16101 entries.\n", | |
| "Appended to output/by_route/187.csv, 8666 entries.\n", | |
| "Appended to output/by_route/57.csv, 6730 entries.\n", | |
| "Appended to output/by_route/121.csv, 2781 entries.\n", | |
| "Appended to output/by_route/358.csv, 27662 entries.\n", | |
| "Appended to output/by_route/101.csv, 5301 entries.\n", | |
| "Appended to output/by_route/203.csv, 9465 entries.\n", | |
| "Appended to output/by_route/7A.csv, 5645 entries.\n", | |
| "Appended to output/by_route/151.csv, 12273 entries.\n", | |
| "Appended to output/by_route/301.csv, 15191 entries.\n", | |
| "Appended to output/by_route/41.csv, 1394 entries.\n", | |
| "Appended to output/by_route/70A.csv, 3548 entries.\n", | |
| "Appended to output/by_route/181C.csv, 7230 entries.\n", | |
| "Appended to output/by_route/125.csv, 5642 entries.\n", | |
| "Appended to output/by_route/158.csv, 5756 entries.\n", | |
| "Appended to output/by_route/168.csv, 10291 entries.\n", | |
| "Appended to output/by_route/110.csv, 8765 entries.\n", | |
| "Appended to output/by_route/123.csv, 10173 entries.\n", | |
| "Appended to output/by_route/376.csv, 7708 entries.\n", | |
| "Appended to output/by_route/315.csv, 8500 entries.\n", | |
| "Appended to output/by_route/87F.csv, 3328 entries.\n", | |
| "Appended to output/by_route/291.csv, 5864 entries.\n", | |
| "Appended to output/by_route/197.csv, 4097 entries.\n", | |
| "Appended to output/by_route/208.csv, 11881 entries.\n", | |
| "Appended to output/by_route/256.csv, 13459 entries.\n", | |
| "Appended to output/by_route/201.csv, 7535 entries.\n", | |
| "Appended to output/by_route/VJR2.csv, 3772 entries.\n", | |
| "Appended to output/by_route/143.csv, 5945 entries.\n", | |
| "Appended to output/by_route/264.csv, 2621 entries.\n", | |
| "Appended to output/by_route/347.csv, 5889 entries.\n", | |
| "Appended to output/by_route/31.csv, 15333 entries.\n", | |
| "Appended to output/by_route/374.csv, 226 entries.\n", | |
| "Appended to output/by_route/501.csv, 1509 entries.\n", | |
| "Appended to output/by_route/204.csv, 2199 entries.\n", | |
| "Appended to output/by_route/180.csv, 6722 entries.\n", | |
| "Appended to output/by_route/336.csv, 6904 entries.\n", | |
| "Appended to output/by_route/VJR6.csv, 1084 entries.\n", | |
| "Appended to output/by_route/305.csv, 9948 entries.\n", | |
| "Appended to output/by_route/145A.csv, 1762 entries.\n", | |
| "Appended to output/by_route/103.csv, 19982 entries.\n", | |
| "Appended to output/by_route/174.csv, 6372 entries.\n", | |
| "Appended to output/by_route/372.csv, 5196 entries.\n", | |
| "Appended to output/by_route/107.csv, 5796 entries.\n", | |
| "Appended to output/by_route/282.csv, 3577 entries.\n", | |
| "Appended to output/by_route/37.csv, 6332 entries.\n", | |
| "Appended to output/by_route/148A.csv, 1477 entries.\n", | |
| "Appended to output/by_route/332.csv, 3753 entries.\n", | |
| "Appended to output/by_route/167.csv, 4694 entries.\n", | |
| "Appended to output/by_route/186.csv, 2670 entries.\n", | |
| "Appended to output/by_route/53.csv, 3872 entries.\n", | |
| "Appended to output/by_route/169.csv, 3659 entries.\n", | |
| "Appended to output/by_route/118B.csv, 1344 entries.\n", | |
| "Appended to output/by_route/19.csv, 12597 entries.\n", | |
| "Appended to output/by_route/154.csv, 1851 entries.\n", | |
| "Appended to output/by_route/312.csv, 7172 entries.\n", | |
| "Appended to output/by_route/299.csv, 3887 entries.\n", | |
| "Appended to output/by_route/159.csv, 1984 entries.\n", | |
| "Appended to output/by_route/2.csv, 16774 entries.\n", | |
| "Appended to output/by_route/87.csv, 2654 entries.\n", | |
| "Appended to output/by_route/133.csv, 3344 entries.\n", | |
| "Appended to output/by_route/120.csv, 7006 entries.\n", | |
| "Appended to output/by_route/328.csv, 1324 entries.\n", | |
| "Appended to output/by_route/118.csv, 6887 entries.\n", | |
| "Appended to output/by_route/50B.csv, 2980 entries.\n", | |
| "Appended to output/by_route/298.csv, 3187 entries.\n", | |
| "Appended to output/by_route/191.csv, 3578 entries.\n", | |
| "Appended to output/by_route/55.csv, 4974 entries.\n", | |
| "Appended to output/by_route/357.csv, 4650 entries.\n", | |
| "Appended to output/by_route/170.csv, 2948 entries.\n", | |
| "Appended to output/by_route/331.csv, 4515 entries.\n", | |
| "Appended to output/by_route/181.csv, 1120 entries.\n", | |
| "Appended to output/by_route/155.csv, 9532 entries.\n", | |
| "Appended to output/by_route/284.csv, 5228 entries.\n", | |
| "Appended to output/by_route/192.csv, 3269 entries.\n", | |
| "Appended to output/by_route/109.csv, 7185 entries.\n", | |
| "Appended to output/by_route/126.csv, 2757 entries.\n", | |
| "Appended to output/by_route/122.csv, 865 entries.\n", | |
| "Appended to output/by_route/337.csv, 1445 entries.\n", | |
| "Appended to output/by_route/85.csv, 3411 entries.\n", | |
| "Appended to output/by_route/97.csv, 1602 entries.\n", | |
| "Appended to output/by_route/322.csv, 4772 entries.\n", | |
| "Appended to output/by_route/281.csv, 6798 entries.\n", | |
| "Appended to output/by_route/39.csv, 406 entries.\n", | |
| "Appended to output/by_route/148.csv, 9087 entries.\n", | |
| "Appended to output/by_route/205.csv, 4228 entries.\n", | |
| "Appended to output/by_route/VJR1.csv, 6926 entries.\n", | |
| "Appended to output/by_route/279.csv, 546 entries.\n", | |
| "Appended to output/by_route/50.csv, 2774 entries.\n", | |
| "Appended to output/by_route/38.csv, 3292 entries.\n", | |
| "Appended to output/by_route/360.csv, 885 entries.\n", | |
| "Appended to output/by_route/VJR3.csv, 3268 entries.\n", | |
| "Appended to output/by_route/297.csv, 2116 entries.\n", | |
| "Appended to output/by_route/302A(New).csv, 1139 entries.\n", | |
| "Appended to output/by_route/195.csv, 2079 entries.\n", | |
| "Appended to output/by_route/335A.csv, 468 entries.\n", | |
| "Appended to output/by_route/76.csv, 1150 entries.\n", | |
| "Appended to output/by_route/128.csv, 3055 entries.\n", | |
| "Appended to output/by_route/119.csv, 2401 entries.\n", | |
| "Appended to output/by_route/71.csv, 1310 entries.\n", | |
| "Appended to output/by_route/317.csv, 3508 entries.\n", | |
| "Appended to output/by_route/359.csv, 679 entries.\n", | |
| "Appended to output/by_route/277A.csv, 616 entries.\n", | |
| "Appended to output/by_route/69.csv, 107 entries.\n", | |
| "Appended to output/by_route/363A.csv, 1123 entries.\n", | |
| "Appended to output/by_route/162.csv, 1172 entries.\n", | |
| "Appended to output/by_route/166.csv, 1540 entries.\n", | |
| "Appended to output/by_route/340.csv, 2746 entries.\n", | |
| "Appended to output/by_route/VJR5.csv, 137 entries.\n", | |
| "Appended to output/by_route/363.csv, 929 entries.\n", | |
| "Appended to output/by_route/114.csv, 761 entries.\n", | |
| "Appended to output/by_route/209.csv, 696 entries.\n", | |
| "Appended to output/by_route/19D.csv, 1078 entries.\n", | |
| "Appended to output/by_route/22A.csv, 247 entries.\n", | |
| "Appended to output/by_route/113.csv, 1288 entries.\n", | |
| "Appended to output/by_route/327.csv, 640 entries.\n", | |
| "Appended to output/by_route/77.csv, 3 entries.\n", | |
| "Appended to output/by_route/206.csv, 1313 entries.\n", | |
| "Appended to output/by_route/190.csv, 356 entries.\n", | |
| "Appended to output/by_route/68S.csv, 1782 entries.\n", | |
| "Appended to output/by_route/354.csv, 2348 entries.\n", | |
| "Created output/by_route/330.csv, 116 entries.\n", | |
| "Appended to output/by_route/292.csv, 1043 entries.\n", | |
| "Appended to output/by_route/100.csv, 623 entries.\n", | |
| "Appended to output/by_route/72.csv, 898 entries.\n", | |
| "Appended to output/by_route/108.csv, 3144 entries.\n", | |
| "Appended to output/by_route/188.csv, 943 entries.\n", | |
| "Appended to output/by_route/33.csv, 732 entries.\n", | |
| "Appended to output/by_route/26.csv, 244 entries.\n", | |
| "Appended to output/by_route/102.csv, 372 entries.\n", | |
| "Appended to output/by_route/316.csv, 64 entries.\n", | |
| "Appended to output/by_route/189.csv, 1794 entries.\n", | |
| "Appended to output/by_route/135.csv, 3687 entries.\n", | |
| "Appended to output/by_route/304A.csv, 99 entries.\n", | |
| "Appended to output/by_route/234.csv, 937 entries.\n", | |
| "Appended to output/by_route/257.csv, 115 entries.\n", | |
| "Appended to output/by_route/367C.csv, 619 entries.\n", | |
| "Appended to output/by_route/149.csv, 372 entries.\n", | |
| "Appended to output/by_route/51.csv, 1030 entries.\n", | |
| "Appended to output/by_route/117A.csv, 889 entries.\n", | |
| "Appended to output/by_route/304.csv, 247 entries.\n", | |
| "Appended to output/by_route/158A(NEW).csv, 240 entries.\n", | |
| "Appended to output/by_route/78.csv, 720 entries.\n", | |
| "Appended to output/by_route/346.csv, 1911 entries.\n", | |
| "Appended to output/by_route/305B.csv, 436 entries.\n", | |
| "Appended to output/by_route/141.csv, 943 entries.\n", | |
| "Appended to output/by_route/379.csv, 1071 entries.\n", | |
| "Appended to output/by_route/19A.csv, 90 entries.\n", | |
| "Appended to output/by_route/85A.csv, 209 entries.\n", | |
| "Appended to output/by_route/203P.csv, 947 entries.\n", | |
| "Appended to output/by_route/324.csv, 525 entries.\n", | |
| "Appended to output/by_route/175.csv, 341 entries.\n", | |
| "Appended to output/by_route/36.csv, 700 entries.\n", | |
| "Appended to output/by_route/217.csv, 647 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_route/213.csv, 10 entries.\n", | |
| "Appended to output/by_route/91.csv, 177 entries.\n", | |
| "Appended to output/by_route/136.csv, 210 entries.\n", | |
| "Created output/by_route/15.csv, 298 entries.\n", | |
| "Appended to output/by_route/233.csv, 995 entries.\n", | |
| "Appended to output/by_route/355.csv, 1607 entries.\n", | |
| "Appended to output/by_route/14.csv, 1809 entries.\n", | |
| "Appended to output/by_route/80.csv, 638 entries.\n", | |
| "Appended to output/by_route/333.csv, 80 entries.\n", | |
| "Created output/by_route/307.csv, 3 entries.\n", | |
| "Appended to output/by_route/366.csv, 186 entries.\n", | |
| "Appended to output/by_route/152.csv, 206 entries.\n", | |
| "Vehicles: ['R634', '1246', 'R635', 'P179', 'CNG510', '1662', 'CNG526', '1141', '924', '893', '576', '603', '590', '606', '610', '614', '586', '618', '631', '648', '642', '659', '679', '705', '709', '595', '652', '622', '591', '597', '1255', 'CNG210', 'CNG238', '735', '721', '1680', '650', '755', '488', '1014', '1730', 'R471', 'R489', 'R480', 'R417', '900', '939', '1015', '1022', '1155', '1162', '1169', '1202', '1206', '1217', '1224', '1238', '1244', '1253', '1262', '1447', '1449', '1498', '1536', '1557', '1566', '1578', '1616', '1675', '1685', '1687', '1692', '1716', '1725', '1781', 'CNG01', 'CNG31', 'CNG33', 'CNG34', 'CNG51', 'CNG62', 'CNG72', 'CNG80', 'CNG324', 'CNG437', 'CNG421', 'CNG446', 'CNG543', 'CNG482', 'CNG476', 'CNG317', 'CNG575', 'CNG529', '1569', 'CNG474', 'CNG477', 'P389', 'CNG214', '1535', 'CNG40', 'CNG445', '1695', '1694', 'CNG372', '557', '1132', '1241', 'CNG362', 'CNG338', 'R370', 'R425', 'R609', '909', '984', '998', '1116', '1205', '1210', '1216', '1219', '1257', '1471', '1481', '1548', '1579', '1714', '1720', '1755', '1783', 'CNG20', 'CNG73', 'CNG228', 'CNG462', 'CNG309', 'CNG133', 'CNG475', 'R274', '1713', '1107', '1293', 'R241', '1276', 'CNG530', 'CNG216', '587', 'R608', 'CNG19', 'CNG49', '600', '663', '1264', '1465', '1723', 'R427', 'R369', '1112', '1140', '1752', '560', 'R357', 'R621', '1006', '1661', 'CNG562', '1021', 'R332', 'CNG93', 'R320', '1170', 'CNG32', 'P257', '1214', '1200', 'CNG144', '609', '722', 'P168', '953', 'CNG494', 'CNG456', 'R615', 'R547', '734', 'R223', '1149', '569', '1280', 'R501', 'CNG211', '1113', '582', 'R431', 'R599', 'R555', '1446', '1690', '1124', 'R368', '975', '1743', 'CNG366', '712', 'R573', 'CNG103', '1800', 'CNG454', '732', 'CNG47', '1184', 'CNG580', '1284', '1711', '1802', 'CNG57', '1747', '1474', '1114', '1223', '666', 'CNG25', '1806', 'CNG36', '1621', 'R259', 'R244', '1242', 'CNG52', 'CNG115', '1534', '1732', '1294', '1172', '1618', 'R600', '1803', '1570', '1571', 'R570', '558', '601', 'R402', 'CNG552', '628', '1671', 'P170', '944', 'R355', '1002', '1567', 'R119', '1277', 'CNG396', '948', 'CNG569', '1020', '949', '1477', 'R578', 'CNG441', '1062', 'R372', '1444', '1564', '1267', '1756', 'CNG433', '1797', 'R591', '1175', '1230', '1069', '1588', '1101', 'CNG370', 'CNG215', 'CNG363', 'CNG414', '1565', '1598', '1473', '1470', '583', '1808', '730', '1209', '563', '1726', '723', '635', '1236', 'R393', 'CNG65', '1676', 'CNG319', '1681', '641', 'CNG422', '751', 'R411', '1193', '1142', 'CNG124', '1525', '677', '633', '616', 'CNG328', '602', 'R434', '1148', 'R257', 'R345', '578', '566', '605', 'R512', 'CNG554', '1000', '613', '1102', 'CNG461', '653', 'R639', '733', '658', '574', '1144', 'CNG345', 'CNG531', 'R292', 'R428', '617', '568', 'CNG343', '629', '564', 'CNG252', 'R309', '577', '1128', 'CNG150', '1712', '974', '589', '749', '916', 'CNG44', 'R252', '1226', 'P247', '638', '747', '937', 'CNG460', '670', '608', 'R371', '1450', '1667', '682', 'R606', 'CNG443', 'R349', 'R500', '1490', 'CNG423', '599', 'R234', '979', 'P243', 'CNG111', 'BDV 390', 'CNG91', 'R232', '1767', '1795', '1577', 'CNG568', 'CNG221', 'CNG08', '726', 'CNG331', '1787', '681', '754', 'R246', 'CNG432', '1274', 'R237', 'CNG218', 'R231', 'CNG163', '1555', 'CNG145', 'R626', '973', 'R607', 'CNG541', '1790', '1594', 'R620', 'R511', '1526', '938', '729', 'R285', 'R397', '1677', '592', 'CNG413', 'CNG567', 'CNG229', 'R251', '1011', 'CNG43', 'CNG325', '1207', '1619', 'CNG444', 'CNG39', '1724', 'CNG376', '607', 'R398', '623', '1291', 'CNG135', 'CNG380', 'R114', '646', '559', '644', '690', 'R379', 'R517', 'R514', 'P262', 'CNG555', '556', '667', 'P182', 'CNG139', 'R239', 'R631', '694', 'CNG164', 'CNG428', 'CNG07', 'CNG550', 'R382', 'CNG585', '1268', 'CNG500', 'P260', 'R613', '665', 'R354', 'R474', 'R23', 'R325', '1543', 'CNG147', 'R336', 'CNG438', '1757', '555', 'CNG282', '927', 'CNG470', 'R594', '596', 'R311', 'R590', 'R505', 'CNG323', 'CNG83', '621', 'R388', '647', '1482', 'R421', '744', 'R414', '654', '1611', 'CNG12', 'CNG576', 'R426', '743', '202', '693', 'R53', 'R367', '1799', '1663', 'R245', '1054', 'CNG582', 'R506', '1158', '579', '620', 'R385', 'R630', '588', '746', 'CNG452', '728', 'R298', 'CNG326', '639', 'CNG431', '655', 'R381', '1759', 'P194', 'P255', '624', 'P381', 'R577', 'CNG29', '467', 'CNG522', '745', 'CNG121', '1560', '727', 'CNG544', 'R269', '581', '662', '1098', '699', 'CNG350', '626', '1196', '1105', 'R487', '571', 'R627', '593', 'R226', 'R642', '947', 'P192', 'R648', 'R247', 'R493', '1460', 'R224', 'R596', 'CNG435', 'CNG311', 'R595', '1191', '912', '584', 'R366', 'R182', 'R138', 'CNG321', 'CNG27', 'CNG61', '1187', '1701', 'CNG217']\n", | |
| "Appended to output/by_vehicle/R634.csv, 1596 entries.\n", | |
| "Appended to output/by_vehicle/1246.csv, 3074 entries.\n", | |
| "Appended to output/by_vehicle/R635.csv, 3026 entries.\n", | |
| "Appended to output/by_vehicle/P179.csv, 199 entries.\n", | |
| "Appended to output/by_vehicle/CNG510.csv, 3526 entries.\n", | |
| "Appended to output/by_vehicle/1662.csv, 5108 entries.\n", | |
| "Appended to output/by_vehicle/CNG526.csv, 4961 entries.\n", | |
| "Appended to output/by_vehicle/1141.csv, 447 entries.\n", | |
| "Appended to output/by_vehicle/924.csv, 4054 entries.\n", | |
| "Appended to output/by_vehicle/893.csv, 9301 entries.\n", | |
| "Appended to output/by_vehicle/576.csv, 2606 entries.\n", | |
| "Appended to output/by_vehicle/603.csv, 6600 entries.\n", | |
| "Appended to output/by_vehicle/590.csv, 4119 entries.\n", | |
| "Appended to output/by_vehicle/606.csv, 3144 entries.\n", | |
| "Appended to output/by_vehicle/610.csv, 3552 entries.\n", | |
| "Appended to output/by_vehicle/614.csv, 2863 entries.\n", | |
| "Appended to output/by_vehicle/586.csv, 1116 entries.\n", | |
| "Appended to output/by_vehicle/618.csv, 2742 entries.\n", | |
| "Appended to output/by_vehicle/631.csv, 1532 entries.\n", | |
| "Appended to output/by_vehicle/648.csv, 2198 entries.\n", | |
| "Appended to output/by_vehicle/642.csv, 2653 entries.\n", | |
| "Appended to output/by_vehicle/659.csv, 2047 entries.\n", | |
| "Appended to output/by_vehicle/679.csv, 4369 entries.\n", | |
| "Appended to output/by_vehicle/705.csv, 1613 entries.\n", | |
| "Appended to output/by_vehicle/709.csv, 2868 entries.\n", | |
| "Appended to output/by_vehicle/595.csv, 4333 entries.\n", | |
| "Appended to output/by_vehicle/652.csv, 1435 entries.\n", | |
| "Appended to output/by_vehicle/622.csv, 2246 entries.\n", | |
| "Appended to output/by_vehicle/591.csv, 2972 entries.\n", | |
| "Appended to output/by_vehicle/597.csv, 5067 entries.\n", | |
| "Appended to output/by_vehicle/1255.csv, 5044 entries.\n", | |
| "Appended to output/by_vehicle/CNG210.csv, 6036 entries.\n", | |
| "Appended to output/by_vehicle/CNG238.csv, 665 entries.\n", | |
| "Appended to output/by_vehicle/735.csv, 2276 entries.\n", | |
| "Appended to output/by_vehicle/721.csv, 4310 entries.\n", | |
| "Appended to output/by_vehicle/1680.csv, 1598 entries.\n", | |
| "Appended to output/by_vehicle/650.csv, 2514 entries.\n", | |
| "Appended to output/by_vehicle/755.csv, 986 entries.\n", | |
| "Appended to output/by_vehicle/488.csv, 8161 entries.\n", | |
| "Appended to output/by_vehicle/1014.csv, 603 entries.\n", | |
| "Appended to output/by_vehicle/1730.csv, 403 entries.\n", | |
| "Appended to output/by_vehicle/R471.csv, 477 entries.\n", | |
| "Appended to output/by_vehicle/R489.csv, 513 entries.\n", | |
| "Appended to output/by_vehicle/R480.csv, 236 entries.\n", | |
| "Appended to output/by_vehicle/R417.csv, 234 entries.\n", | |
| "Appended to output/by_vehicle/900.csv, 3854 entries.\n", | |
| "Appended to output/by_vehicle/939.csv, 638 entries.\n", | |
| "Appended to output/by_vehicle/1015.csv, 3471 entries.\n", | |
| "Appended to output/by_vehicle/1022.csv, 3992 entries.\n", | |
| "Appended to output/by_vehicle/1155.csv, 7672 entries.\n", | |
| "Appended to output/by_vehicle/1162.csv, 2852 entries.\n", | |
| "Appended to output/by_vehicle/1169.csv, 3496 entries.\n", | |
| "Appended to output/by_vehicle/1202.csv, 3015 entries.\n", | |
| "Appended to output/by_vehicle/1206.csv, 5403 entries.\n", | |
| "Appended to output/by_vehicle/1217.csv, 3736 entries.\n", | |
| "Appended to output/by_vehicle/1224.csv, 2881 entries.\n", | |
| "Appended to output/by_vehicle/1238.csv, 1779 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/1244.csv, 3362 entries.\n", | |
| "Appended to output/by_vehicle/1253.csv, 5277 entries.\n", | |
| "Appended to output/by_vehicle/1262.csv, 3618 entries.\n", | |
| "Appended to output/by_vehicle/1447.csv, 2280 entries.\n", | |
| "Appended to output/by_vehicle/1449.csv, 5365 entries.\n", | |
| "Appended to output/by_vehicle/1498.csv, 2212 entries.\n", | |
| "Appended to output/by_vehicle/1536.csv, 2446 entries.\n", | |
| "Appended to output/by_vehicle/1557.csv, 5288 entries.\n", | |
| "Appended to output/by_vehicle/1566.csv, 4005 entries.\n", | |
| "Appended to output/by_vehicle/1578.csv, 4609 entries.\n", | |
| "Appended to output/by_vehicle/1616.csv, 892 entries.\n", | |
| "Appended to output/by_vehicle/1675.csv, 3711 entries.\n", | |
| "Appended to output/by_vehicle/1685.csv, 2493 entries.\n", | |
| "Appended to output/by_vehicle/1687.csv, 2992 entries.\n", | |
| "Appended to output/by_vehicle/1692.csv, 1705 entries.\n", | |
| "Appended to output/by_vehicle/1716.csv, 718 entries.\n", | |
| "Appended to output/by_vehicle/1725.csv, 1394 entries.\n", | |
| "Appended to output/by_vehicle/1781.csv, 3548 entries.\n", | |
| "Appended to output/by_vehicle/CNG01.csv, 4355 entries.\n", | |
| "Appended to output/by_vehicle/CNG31.csv, 5278 entries.\n", | |
| "Appended to output/by_vehicle/CNG33.csv, 2232 entries.\n", | |
| "Appended to output/by_vehicle/CNG34.csv, 3419 entries.\n", | |
| "Appended to output/by_vehicle/CNG51.csv, 3844 entries.\n", | |
| "Appended to output/by_vehicle/CNG62.csv, 3032 entries.\n", | |
| "Appended to output/by_vehicle/CNG72.csv, 2534 entries.\n", | |
| "Appended to output/by_vehicle/CNG80.csv, 1981 entries.\n", | |
| "Appended to output/by_vehicle/CNG324.csv, 1986 entries.\n", | |
| "Appended to output/by_vehicle/CNG437.csv, 7254 entries.\n", | |
| "Appended to output/by_vehicle/CNG421.csv, 4339 entries.\n", | |
| "Appended to output/by_vehicle/CNG446.csv, 2801 entries.\n", | |
| "Appended to output/by_vehicle/CNG543.csv, 3569 entries.\n", | |
| "Appended to output/by_vehicle/CNG482.csv, 957 entries.\n", | |
| "Appended to output/by_vehicle/CNG476.csv, 3708 entries.\n", | |
| "Appended to output/by_vehicle/CNG317.csv, 3842 entries.\n", | |
| "Appended to output/by_vehicle/CNG575.csv, 2675 entries.\n", | |
| "Appended to output/by_vehicle/CNG529.csv, 4030 entries.\n", | |
| "Appended to output/by_vehicle/1569.csv, 2651 entries.\n", | |
| "Appended to output/by_vehicle/CNG474.csv, 2759 entries.\n", | |
| "Appended to output/by_vehicle/CNG477.csv, 5284 entries.\n", | |
| "Appended to output/by_vehicle/P389.csv, 737 entries.\n", | |
| "Appended to output/by_vehicle/CNG214.csv, 2061 entries.\n", | |
| "Appended to output/by_vehicle/1535.csv, 5877 entries.\n", | |
| "Appended to output/by_vehicle/CNG40.csv, 2621 entries.\n", | |
| "Appended to output/by_vehicle/CNG445.csv, 5889 entries.\n", | |
| "Appended to output/by_vehicle/1695.csv, 6320 entries.\n", | |
| "Appended to output/by_vehicle/1694.csv, 5546 entries.\n", | |
| "Appended to output/by_vehicle/CNG372.csv, 2215 entries.\n", | |
| "Appended to output/by_vehicle/557.csv, 533 entries.\n", | |
| "Appended to output/by_vehicle/1132.csv, 7178 entries.\n", | |
| "Appended to output/by_vehicle/1241.csv, 1509 entries.\n", | |
| "Appended to output/by_vehicle/CNG362.csv, 2199 entries.\n", | |
| "Appended to output/by_vehicle/CNG338.csv, 3429 entries.\n", | |
| "Appended to output/by_vehicle/R370.csv, 33 entries.\n", | |
| "Appended to output/by_vehicle/R425.csv, 745 entries.\n", | |
| "Appended to output/by_vehicle/R609.csv, 906 entries.\n", | |
| "Appended to output/by_vehicle/909.csv, 1776 entries.\n", | |
| "Appended to output/by_vehicle/984.csv, 4595 entries.\n", | |
| "Appended to output/by_vehicle/998.csv, 3144 entries.\n", | |
| "Appended to output/by_vehicle/1116.csv, 1888 entries.\n", | |
| "Appended to output/by_vehicle/1205.csv, 3399 entries.\n", | |
| "Appended to output/by_vehicle/1210.csv, 7552 entries.\n", | |
| "Appended to output/by_vehicle/1216.csv, 1820 entries.\n", | |
| "Appended to output/by_vehicle/1219.csv, 5517 entries.\n", | |
| "Appended to output/by_vehicle/1257.csv, 2421 entries.\n", | |
| "Appended to output/by_vehicle/1471.csv, 3415 entries.\n", | |
| "Appended to output/by_vehicle/1481.csv, 134 entries.\n", | |
| "Appended to output/by_vehicle/1548.csv, 5249 entries.\n", | |
| "Appended to output/by_vehicle/1579.csv, 4891 entries.\n", | |
| "Appended to output/by_vehicle/1714.csv, 3049 entries.\n", | |
| "Appended to output/by_vehicle/1720.csv, 7930 entries.\n", | |
| "Appended to output/by_vehicle/1755.csv, 2065 entries.\n", | |
| "Appended to output/by_vehicle/1783.csv, 2314 entries.\n", | |
| "Appended to output/by_vehicle/CNG20.csv, 6031 entries.\n", | |
| "Appended to output/by_vehicle/CNG73.csv, 4695 entries.\n", | |
| "Appended to output/by_vehicle/CNG228.csv, 403 entries.\n", | |
| "Appended to output/by_vehicle/CNG462.csv, 658 entries.\n", | |
| "Appended to output/by_vehicle/CNG309.csv, 6793 entries.\n", | |
| "Appended to output/by_vehicle/CNG133.csv, 451 entries.\n", | |
| "Appended to output/by_vehicle/CNG475.csv, 4061 entries.\n", | |
| "Appended to output/by_vehicle/R274.csv, 1895 entries.\n", | |
| "Appended to output/by_vehicle/1713.csv, 5074 entries.\n", | |
| "Appended to output/by_vehicle/1107.csv, 2175 entries.\n", | |
| "Appended to output/by_vehicle/1293.csv, 5183 entries.\n", | |
| "Appended to output/by_vehicle/R241.csv, 1605 entries.\n", | |
| "Appended to output/by_vehicle/1276.csv, 2644 entries.\n", | |
| "Appended to output/by_vehicle/CNG530.csv, 2105 entries.\n", | |
| "Appended to output/by_vehicle/CNG216.csv, 4939 entries.\n", | |
| "Appended to output/by_vehicle/587.csv, 3325 entries.\n", | |
| "Appended to output/by_vehicle/R608.csv, 894 entries.\n", | |
| "Appended to output/by_vehicle/CNG19.csv, 1106 entries.\n", | |
| "Appended to output/by_vehicle/CNG49.csv, 2242 entries.\n", | |
| "Appended to output/by_vehicle/600.csv, 2095 entries.\n", | |
| "Appended to output/by_vehicle/663.csv, 994 entries.\n", | |
| "Appended to output/by_vehicle/1264.csv, 7960 entries.\n", | |
| "Appended to output/by_vehicle/1465.csv, 3427 entries.\n", | |
| "Appended to output/by_vehicle/1723.csv, 2622 entries.\n", | |
| "Appended to output/by_vehicle/R427.csv, 141 entries.\n", | |
| "Appended to output/by_vehicle/R369.csv, 582 entries.\n", | |
| "Appended to output/by_vehicle/1112.csv, 1935 entries.\n", | |
| "Appended to output/by_vehicle/1140.csv, 4387 entries.\n", | |
| "Appended to output/by_vehicle/1752.csv, 3847 entries.\n", | |
| "Appended to output/by_vehicle/560.csv, 2908 entries.\n", | |
| "Appended to output/by_vehicle/R357.csv, 874 entries.\n", | |
| "Appended to output/by_vehicle/R621.csv, 591 entries.\n", | |
| "Appended to output/by_vehicle/1006.csv, 601 entries.\n", | |
| "Appended to output/by_vehicle/1661.csv, 3510 entries.\n", | |
| "Appended to output/by_vehicle/CNG562.csv, 2263 entries.\n", | |
| "Appended to output/by_vehicle/1021.csv, 5155 entries.\n", | |
| "Appended to output/by_vehicle/R332.csv, 132 entries.\n", | |
| "Appended to output/by_vehicle/CNG93.csv, 2420 entries.\n", | |
| "Appended to output/by_vehicle/R320.csv, 588 entries.\n", | |
| "Appended to output/by_vehicle/1170.csv, 8038 entries.\n", | |
| "Appended to output/by_vehicle/CNG32.csv, 2232 entries.\n", | |
| "Appended to output/by_vehicle/P257.csv, 1027 entries.\n", | |
| "Appended to output/by_vehicle/1214.csv, 5130 entries.\n", | |
| "Appended to output/by_vehicle/1200.csv, 1190 entries.\n", | |
| "Appended to output/by_vehicle/CNG144.csv, 7006 entries.\n", | |
| "Appended to output/by_vehicle/609.csv, 1324 entries.\n", | |
| "Appended to output/by_vehicle/722.csv, 3264 entries.\n", | |
| "Appended to output/by_vehicle/P168.csv, 2210 entries.\n", | |
| "Appended to output/by_vehicle/953.csv, 2980 entries.\n", | |
| "Appended to output/by_vehicle/CNG494.csv, 1941 entries.\n", | |
| "Appended to output/by_vehicle/CNG456.csv, 1764 entries.\n", | |
| "Appended to output/by_vehicle/R615.csv, 1256 entries.\n", | |
| "Appended to output/by_vehicle/R547.csv, 152 entries.\n", | |
| "Appended to output/by_vehicle/734.csv, 3147 entries.\n", | |
| "Appended to output/by_vehicle/R223.csv, 69 entries.\n", | |
| "Appended to output/by_vehicle/1149.csv, 3200 entries.\n", | |
| "Appended to output/by_vehicle/569.csv, 2999 entries.\n", | |
| "Appended to output/by_vehicle/1280.csv, 3170 entries.\n", | |
| "Appended to output/by_vehicle/R501.csv, 926 entries.\n", | |
| "Appended to output/by_vehicle/CNG211.csv, 3425 entries.\n", | |
| "Appended to output/by_vehicle/1113.csv, 3578 entries.\n", | |
| "Appended to output/by_vehicle/582.csv, 3658 entries.\n", | |
| "Appended to output/by_vehicle/R431.csv, 616 entries.\n", | |
| "Appended to output/by_vehicle/R599.csv, 2466 entries.\n", | |
| "Appended to output/by_vehicle/R555.csv, 529 entries.\n", | |
| "Appended to output/by_vehicle/1446.csv, 337 entries.\n", | |
| "Appended to output/by_vehicle/1690.csv, 3378 entries.\n", | |
| "Appended to output/by_vehicle/1124.csv, 6059 entries.\n", | |
| "Appended to output/by_vehicle/R368.csv, 1418 entries.\n", | |
| "Appended to output/by_vehicle/975.csv, 1175 entries.\n", | |
| "Appended to output/by_vehicle/1743.csv, 3349 entries.\n", | |
| "Appended to output/by_vehicle/CNG366.csv, 3870 entries.\n", | |
| "Appended to output/by_vehicle/712.csv, 2755 entries.\n", | |
| "Appended to output/by_vehicle/R573.csv, 1771 entries.\n", | |
| "Appended to output/by_vehicle/CNG103.csv, 3867 entries.\n", | |
| "Appended to output/by_vehicle/1800.csv, 1678 entries.\n", | |
| "Appended to output/by_vehicle/CNG454.csv, 3302 entries.\n", | |
| "Appended to output/by_vehicle/732.csv, 1753 entries.\n", | |
| "Appended to output/by_vehicle/CNG47.csv, 2135 entries.\n", | |
| "Appended to output/by_vehicle/1184.csv, 4715 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/CNG580.csv, 981 entries.\n", | |
| "Appended to output/by_vehicle/1284.csv, 1619 entries.\n", | |
| "Appended to output/by_vehicle/1711.csv, 5368 entries.\n", | |
| "Appended to output/by_vehicle/1802.csv, 2200 entries.\n", | |
| "Appended to output/by_vehicle/CNG57.csv, 2875 entries.\n", | |
| "Appended to output/by_vehicle/1747.csv, 1849 entries.\n", | |
| "Appended to output/by_vehicle/1474.csv, 6210 entries.\n", | |
| "Appended to output/by_vehicle/1114.csv, 2064 entries.\n", | |
| "Appended to output/by_vehicle/1223.csv, 2313 entries.\n", | |
| "Appended to output/by_vehicle/666.csv, 2947 entries.\n", | |
| "Appended to output/by_vehicle/CNG25.csv, 4076 entries.\n", | |
| "Appended to output/by_vehicle/1806.csv, 2319 entries.\n", | |
| "Appended to output/by_vehicle/CNG36.csv, 2720 entries.\n", | |
| "Appended to output/by_vehicle/1621.csv, 1193 entries.\n", | |
| "Appended to output/by_vehicle/R259.csv, 769 entries.\n", | |
| "Appended to output/by_vehicle/R244.csv, 596 entries.\n", | |
| "Appended to output/by_vehicle/1242.csv, 1239 entries.\n", | |
| "Appended to output/by_vehicle/CNG52.csv, 1417 entries.\n", | |
| "Appended to output/by_vehicle/CNG115.csv, 865 entries.\n", | |
| "Appended to output/by_vehicle/1534.csv, 5852 entries.\n", | |
| "Appended to output/by_vehicle/1732.csv, 2877 entries.\n", | |
| "Appended to output/by_vehicle/1294.csv, 1599 entries.\n", | |
| "Appended to output/by_vehicle/1172.csv, 4170 entries.\n", | |
| "Appended to output/by_vehicle/1618.csv, 3616 entries.\n", | |
| "Appended to output/by_vehicle/R600.csv, 713 entries.\n", | |
| "Appended to output/by_vehicle/1803.csv, 4344 entries.\n", | |
| "Appended to output/by_vehicle/1570.csv, 2513 entries.\n", | |
| "Appended to output/by_vehicle/1571.csv, 3620 entries.\n", | |
| "Appended to output/by_vehicle/R570.csv, 315 entries.\n", | |
| "Appended to output/by_vehicle/558.csv, 4588 entries.\n", | |
| "Appended to output/by_vehicle/601.csv, 4277 entries.\n", | |
| "Appended to output/by_vehicle/R402.csv, 24 entries.\n", | |
| "Appended to output/by_vehicle/CNG552.csv, 2434 entries.\n", | |
| "Appended to output/by_vehicle/628.csv, 612 entries.\n", | |
| "Appended to output/by_vehicle/1671.csv, 1331 entries.\n", | |
| "Appended to output/by_vehicle/P170.csv, 1981 entries.\n", | |
| "Appended to output/by_vehicle/944.csv, 2701 entries.\n", | |
| "Appended to output/by_vehicle/R355.csv, 179 entries.\n", | |
| "Appended to output/by_vehicle/1002.csv, 6798 entries.\n", | |
| "Appended to output/by_vehicle/1567.csv, 934 entries.\n", | |
| "Appended to output/by_vehicle/R119.csv, 88 entries.\n", | |
| "Appended to output/by_vehicle/1277.csv, 959 entries.\n", | |
| "Appended to output/by_vehicle/CNG396.csv, 1634 entries.\n", | |
| "Created output/by_vehicle/948.csv, 4627 entries.\n", | |
| "Appended to output/by_vehicle/CNG569.csv, 1036 entries.\n", | |
| "Appended to output/by_vehicle/1020.csv, 406 entries.\n", | |
| "Appended to output/by_vehicle/949.csv, 2304 entries.\n", | |
| "Appended to output/by_vehicle/1477.csv, 847 entries.\n", | |
| "Appended to output/by_vehicle/R578.csv, 648 entries.\n", | |
| "Appended to output/by_vehicle/CNG441.csv, 1584 entries.\n", | |
| "Appended to output/by_vehicle/1062.csv, 1978 entries.\n", | |
| "Appended to output/by_vehicle/R372.csv, 192 entries.\n", | |
| "Appended to output/by_vehicle/1444.csv, 1236 entries.\n", | |
| "Appended to output/by_vehicle/1564.csv, 2167 entries.\n", | |
| "Appended to output/by_vehicle/1267.csv, 546 entries.\n", | |
| "Appended to output/by_vehicle/1756.csv, 3569 entries.\n", | |
| "Created output/by_vehicle/CNG433.csv, 570 entries.\n", | |
| "Appended to output/by_vehicle/1797.csv, 1721 entries.\n", | |
| "Appended to output/by_vehicle/R591.csv, 694 entries.\n", | |
| "Appended to output/by_vehicle/1175.csv, 1237 entries.\n", | |
| "Appended to output/by_vehicle/1230.csv, 1057 entries.\n", | |
| "Appended to output/by_vehicle/1069.csv, 3709 entries.\n", | |
| "Appended to output/by_vehicle/1588.csv, 159 entries.\n", | |
| "Appended to output/by_vehicle/1101.csv, 3347 entries.\n", | |
| "Appended to output/by_vehicle/CNG370.csv, 3243 entries.\n", | |
| "Appended to output/by_vehicle/CNG215.csv, 731 entries.\n", | |
| "Appended to output/by_vehicle/CNG363.csv, 1637 entries.\n", | |
| "Appended to output/by_vehicle/CNG414.csv, 2722 entries.\n", | |
| "Appended to output/by_vehicle/1565.csv, 2356 entries.\n", | |
| "Appended to output/by_vehicle/1598.csv, 1105 entries.\n", | |
| "Appended to output/by_vehicle/1473.csv, 303 entries.\n", | |
| "Appended to output/by_vehicle/1470.csv, 3516 entries.\n", | |
| "Appended to output/by_vehicle/583.csv, 1400 entries.\n", | |
| "Appended to output/by_vehicle/1808.csv, 3294 entries.\n", | |
| "Appended to output/by_vehicle/730.csv, 1139 entries.\n", | |
| "Appended to output/by_vehicle/1209.csv, 930 entries.\n", | |
| "Appended to output/by_vehicle/563.csv, 2957 entries.\n", | |
| "Appended to output/by_vehicle/1726.csv, 620 entries.\n", | |
| "Appended to output/by_vehicle/723.csv, 656 entries.\n", | |
| "Appended to output/by_vehicle/635.csv, 468 entries.\n", | |
| "Appended to output/by_vehicle/1236.csv, 278 entries.\n", | |
| "Appended to output/by_vehicle/R393.csv, 76 entries.\n", | |
| "Appended to output/by_vehicle/CNG65.csv, 301 entries.\n", | |
| "Appended to output/by_vehicle/1676.csv, 425 entries.\n", | |
| "Appended to output/by_vehicle/CNG319.csv, 1236 entries.\n", | |
| "Created output/by_vehicle/1681.csv, 1186 entries.\n", | |
| "Appended to output/by_vehicle/641.csv, 120 entries.\n", | |
| "Appended to output/by_vehicle/CNG422.csv, 786 entries.\n", | |
| "Appended to output/by_vehicle/751.csv, 2564 entries.\n", | |
| "Created output/by_vehicle/R411.csv, 34 entries.\n", | |
| "Created output/by_vehicle/1193.csv, 906 entries.\n", | |
| "Appended to output/by_vehicle/1142.csv, 2339 entries.\n", | |
| "Appended to output/by_vehicle/CNG124.csv, 2950 entries.\n", | |
| "Appended to output/by_vehicle/1525.csv, 1167 entries.\n", | |
| "Appended to output/by_vehicle/677.csv, 418 entries.\n", | |
| "Appended to output/by_vehicle/633.csv, 679 entries.\n", | |
| "Appended to output/by_vehicle/616.csv, 1206 entries.\n", | |
| "Appended to output/by_vehicle/CNG328.csv, 422 entries.\n", | |
| "Appended to output/by_vehicle/602.csv, 480 entries.\n", | |
| "Appended to output/by_vehicle/R434.csv, 159 entries.\n", | |
| "Appended to output/by_vehicle/1148.csv, 1172 entries.\n", | |
| "Appended to output/by_vehicle/R257.csv, 115 entries.\n", | |
| "Created output/by_vehicle/R345.csv, 2229 entries.\n", | |
| "Appended to output/by_vehicle/578.csv, 1012 entries.\n", | |
| "Appended to output/by_vehicle/566.csv, 2112 entries.\n", | |
| "Appended to output/by_vehicle/605.csv, 2746 entries.\n", | |
| "Appended to output/by_vehicle/R512.csv, 137 entries.\n", | |
| "Appended to output/by_vehicle/CNG554.csv, 1651 entries.\n", | |
| "Appended to output/by_vehicle/1000.csv, 5303 entries.\n", | |
| "Appended to output/by_vehicle/613.csv, 244 entries.\n", | |
| "Appended to output/by_vehicle/1102.csv, 2064 entries.\n", | |
| "Appended to output/by_vehicle/CNG461.csv, 4145 entries.\n", | |
| "Appended to output/by_vehicle/653.csv, 3338 entries.\n", | |
| "Appended to output/by_vehicle/R639.csv, 1192 entries.\n", | |
| "Appended to output/by_vehicle/733.csv, 191 entries.\n", | |
| "Appended to output/by_vehicle/658.csv, 2575 entries.\n", | |
| "Appended to output/by_vehicle/574.csv, 2477 entries.\n", | |
| "Appended to output/by_vehicle/1144.csv, 243 entries.\n", | |
| "Appended to output/by_vehicle/CNG345.csv, 951 entries.\n", | |
| "Appended to output/by_vehicle/CNG531.csv, 1173 entries.\n", | |
| "Appended to output/by_vehicle/R292.csv, 803 entries.\n", | |
| "Appended to output/by_vehicle/R428.csv, 525 entries.\n", | |
| "Appended to output/by_vehicle/617.csv, 382 entries.\n", | |
| "Appended to output/by_vehicle/568.csv, 237 entries.\n", | |
| "Appended to output/by_vehicle/CNG343.csv, 3120 entries.\n", | |
| "Appended to output/by_vehicle/629.csv, 756 entries.\n", | |
| "Appended to output/by_vehicle/564.csv, 216 entries.\n", | |
| "Appended to output/by_vehicle/CNG252.csv, 950 entries.\n", | |
| "Appended to output/by_vehicle/R309.csv, 248 entries.\n", | |
| "Appended to output/by_vehicle/577.csv, 3045 entries.\n", | |
| "Appended to output/by_vehicle/1128.csv, 543 entries.\n", | |
| "Appended to output/by_vehicle/CNG150.csv, 1429 entries.\n", | |
| "Appended to output/by_vehicle/1712.csv, 1632 entries.\n", | |
| "Appended to output/by_vehicle/974.csv, 247 entries.\n", | |
| "Appended to output/by_vehicle/589.csv, 1288 entries.\n", | |
| "Appended to output/by_vehicle/749.csv, 1141 entries.\n", | |
| "Appended to output/by_vehicle/916.csv, 1488 entries.\n", | |
| "Appended to output/by_vehicle/CNG44.csv, 1411 entries.\n", | |
| "Appended to output/by_vehicle/R252.csv, 552 entries.\n", | |
| "Appended to output/by_vehicle/1226.csv, 3671 entries.\n", | |
| "Appended to output/by_vehicle/P247.csv, 913 entries.\n", | |
| "Appended to output/by_vehicle/638.csv, 298 entries.\n", | |
| "Appended to output/by_vehicle/747.csv, 5171 entries.\n", | |
| "Appended to output/by_vehicle/937.csv, 1009 entries.\n", | |
| "Appended to output/by_vehicle/CNG460.csv, 683 entries.\n", | |
| "Appended to output/by_vehicle/670.csv, 2076 entries.\n", | |
| "Appended to output/by_vehicle/608.csv, 1208 entries.\n", | |
| "Appended to output/by_vehicle/R371.csv, 121 entries.\n", | |
| "Appended to output/by_vehicle/1450.csv, 2707 entries.\n", | |
| "Appended to output/by_vehicle/1667.csv, 356 entries.\n", | |
| "Appended to output/by_vehicle/682.csv, 1782 entries.\n", | |
| "Appended to output/by_vehicle/R606.csv, 133 entries.\n", | |
| "Appended to output/by_vehicle/CNG443.csv, 1835 entries.\n", | |
| "Appended to output/by_vehicle/R349.csv, 125 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Created output/by_vehicle/R500.csv, 271 entries.\n", | |
| "Created output/by_vehicle/1490.csv, 2025 entries.\n", | |
| "Created output/by_vehicle/CNG423.csv, 447 entries.\n", | |
| "Appended to output/by_vehicle/599.csv, 2237 entries.\n", | |
| "Appended to output/by_vehicle/R234.csv, 169 entries.\n", | |
| "Created output/by_vehicle/979.csv, 4236 entries.\n", | |
| "Created output/by_vehicle/P243.csv, 308 entries.\n", | |
| "Appended to output/by_vehicle/CNG111.csv, 122 entries.\n", | |
| "Appended to output/by_vehicle/BDV 390.csv, 4626 entries.\n", | |
| "Appended to output/by_vehicle/CNG91.csv, 1017 entries.\n", | |
| "Appended to output/by_vehicle/R232.csv, 849 entries.\n", | |
| "Appended to output/by_vehicle/1767.csv, 192 entries.\n", | |
| "Appended to output/by_vehicle/1795.csv, 1496 entries.\n", | |
| "Appended to output/by_vehicle/1577.csv, 979 entries.\n", | |
| "Appended to output/by_vehicle/CNG568.csv, 20 entries.\n", | |
| "Appended to output/by_vehicle/CNG221.csv, 152 entries.\n", | |
| "Appended to output/by_vehicle/CNG08.csv, 3898 entries.\n", | |
| "Appended to output/by_vehicle/726.csv, 132 entries.\n", | |
| "Appended to output/by_vehicle/CNG331.csv, 1587 entries.\n", | |
| "Appended to output/by_vehicle/1787.csv, 244 entries.\n", | |
| "Appended to output/by_vehicle/681.csv, 1552 entries.\n", | |
| "Appended to output/by_vehicle/754.csv, 451 entries.\n", | |
| "Appended to output/by_vehicle/R246.csv, 784 entries.\n", | |
| "Appended to output/by_vehicle/CNG432.csv, 116 entries.\n", | |
| "Appended to output/by_vehicle/1274.csv, 2433 entries.\n", | |
| "Appended to output/by_vehicle/R237.csv, 354 entries.\n", | |
| "Appended to output/by_vehicle/CNG218.csv, 3052 entries.\n", | |
| "Appended to output/by_vehicle/R231.csv, 841 entries.\n", | |
| "Appended to output/by_vehicle/CNG163.csv, 145 entries.\n", | |
| "Appended to output/by_vehicle/1555.csv, 1122 entries.\n", | |
| "Appended to output/by_vehicle/CNG145.csv, 64 entries.\n", | |
| "Appended to output/by_vehicle/R626.csv, 13 entries.\n", | |
| "Created output/by_vehicle/973.csv, 215 entries.\n", | |
| "Appended to output/by_vehicle/R607.csv, 845 entries.\n", | |
| "Appended to output/by_vehicle/CNG541.csv, 1271 entries.\n", | |
| "Appended to output/by_vehicle/1790.csv, 547 entries.\n", | |
| "Appended to output/by_vehicle/1594.csv, 385 entries.\n", | |
| "Created output/by_vehicle/R620.csv, 178 entries.\n", | |
| "Appended to output/by_vehicle/R511.csv, 178 entries.\n", | |
| "Appended to output/by_vehicle/1526.csv, 205 entries.\n", | |
| "Appended to output/by_vehicle/938.csv, 51 entries.\n", | |
| "Appended to output/by_vehicle/729.csv, 97 entries.\n", | |
| "Created output/by_vehicle/R285.csv, 56 entries.\n", | |
| "Appended to output/by_vehicle/R397.csv, 420 entries.\n", | |
| "Appended to output/by_vehicle/1677.csv, 1074 entries.\n", | |
| "Appended to output/by_vehicle/592.csv, 343 entries.\n", | |
| "Appended to output/by_vehicle/CNG413.csv, 133 entries.\n", | |
| "Appended to output/by_vehicle/CNG567.csv, 289 entries.\n", | |
| "Appended to output/by_vehicle/CNG229.csv, 1652 entries.\n", | |
| "Created output/by_vehicle/R251.csv, 24 entries.\n", | |
| "Appended to output/by_vehicle/1011.csv, 510 entries.\n", | |
| "Appended to output/by_vehicle/CNG43.csv, 57 entries.\n", | |
| "Appended to output/by_vehicle/CNG325.csv, 4606 entries.\n", | |
| "Appended to output/by_vehicle/1207.csv, 3529 entries.\n", | |
| "Appended to output/by_vehicle/1619.csv, 889 entries.\n", | |
| "Appended to output/by_vehicle/CNG444.csv, 247 entries.\n", | |
| "Appended to output/by_vehicle/CNG39.csv, 240 entries.\n", | |
| "Appended to output/by_vehicle/1724.csv, 396 entries.\n", | |
| "Appended to output/by_vehicle/CNG376.csv, 151 entries.\n", | |
| "Appended to output/by_vehicle/607.csv, 313 entries.\n", | |
| "Appended to output/by_vehicle/R398.csv, 334 entries.\n", | |
| "Appended to output/by_vehicle/623.csv, 1911 entries.\n", | |
| "Appended to output/by_vehicle/1291.csv, 1999 entries.\n", | |
| "Appended to output/by_vehicle/CNG135.csv, 513 entries.\n", | |
| "Created output/by_vehicle/CNG380.csv, 782 entries.\n", | |
| "Appended to output/by_vehicle/R114.csv, 436 entries.\n", | |
| "Appended to output/by_vehicle/646.csv, 967 entries.\n", | |
| "Appended to output/by_vehicle/559.csv, 957 entries.\n", | |
| "Appended to output/by_vehicle/644.csv, 1071 entries.\n", | |
| "Appended to output/by_vehicle/690.csv, 761 entries.\n", | |
| "Appended to output/by_vehicle/R379.csv, 163 entries.\n", | |
| "Appended to output/by_vehicle/R517.csv, 500 entries.\n", | |
| "Appended to output/by_vehicle/R514.csv, 350 entries.\n", | |
| "Appended to output/by_vehicle/P262.csv, 192 entries.\n", | |
| "Appended to output/by_vehicle/CNG555.csv, 296 entries.\n", | |
| "Appended to output/by_vehicle/556.csv, 839 entries.\n", | |
| "Appended to output/by_vehicle/667.csv, 180 entries.\n", | |
| "Appended to output/by_vehicle/P182.csv, 1155 entries.\n", | |
| "Appended to output/by_vehicle/CNG139.csv, 1616 entries.\n", | |
| "Appended to output/by_vehicle/R239.csv, 112 entries.\n", | |
| "Appended to output/by_vehicle/R631.csv, 382 entries.\n", | |
| "Appended to output/by_vehicle/694.csv, 947 entries.\n", | |
| "Appended to output/by_vehicle/CNG164.csv, 1181 entries.\n", | |
| "Appended to output/by_vehicle/CNG428.csv, 2082 entries.\n", | |
| "Appended to output/by_vehicle/CNG07.csv, 241 entries.\n", | |
| "Appended to output/by_vehicle/CNG550.csv, 846 entries.\n", | |
| "Appended to output/by_vehicle/R382.csv, 188 entries.\n", | |
| "Appended to output/by_vehicle/CNG585.csv, 196 entries.\n", | |
| "Appended to output/by_vehicle/1268.csv, 159 entries.\n", | |
| "Appended to output/by_vehicle/CNG500.csv, 346 entries.\n", | |
| "Appended to output/by_vehicle/P260.csv, 214 entries.\n", | |
| "Appended to output/by_vehicle/R613.csv, 525 entries.\n", | |
| "Appended to output/by_vehicle/665.csv, 341 entries.\n", | |
| "Appended to output/by_vehicle/R354.csv, 376 entries.\n", | |
| "Appended to output/by_vehicle/R474.csv, 551 entries.\n", | |
| "Appended to output/by_vehicle/R23.csv, 178 entries.\n", | |
| "Appended to output/by_vehicle/R325.csv, 1990 entries.\n", | |
| "Appended to output/by_vehicle/1543.csv, 508 entries.\n", | |
| "Appended to output/by_vehicle/CNG147.csv, 2327 entries.\n", | |
| "Appended to output/by_vehicle/R336.csv, 52 entries.\n", | |
| "Appended to output/by_vehicle/CNG438.csv, 724 entries.\n", | |
| "Appended to output/by_vehicle/1757.csv, 1450 entries.\n", | |
| "Appended to output/by_vehicle/555.csv, 364 entries.\n", | |
| "Appended to output/by_vehicle/CNG282.csv, 484 entries.\n", | |
| "Appended to output/by_vehicle/927.csv, 224 entries.\n", | |
| "Appended to output/by_vehicle/CNG470.csv, 1246 entries.\n", | |
| "Appended to output/by_vehicle/R594.csv, 555 entries.\n", | |
| "Appended to output/by_vehicle/596.csv, 623 entries.\n", | |
| "Appended to output/by_vehicle/R311.csv, 46 entries.\n", | |
| "Appended to output/by_vehicle/R590.csv, 103 entries.\n", | |
| "Appended to output/by_vehicle/R505.csv, 10 entries.\n", | |
| "Appended to output/by_vehicle/CNG323.csv, 506 entries.\n", | |
| "Appended to output/by_vehicle/CNG83.csv, 37 entries.\n", | |
| "Appended to output/by_vehicle/621.csv, 862 entries.\n", | |
| "Created output/by_vehicle/R388.csv, 448 entries.\n", | |
| "Appended to output/by_vehicle/647.csv, 177 entries.\n", | |
| "Appended to output/by_vehicle/1482.csv, 254 entries.\n", | |
| "Appended to output/by_vehicle/R421.csv, 104 entries.\n", | |
| "Appended to output/by_vehicle/744.csv, 796 entries.\n", | |
| "Appended to output/by_vehicle/R414.csv, 85 entries.\n", | |
| "Appended to output/by_vehicle/654.csv, 555 entries.\n", | |
| "Appended to output/by_vehicle/1611.csv, 131 entries.\n", | |
| "Appended to output/by_vehicle/CNG12.csv, 726 entries.\n", | |
| "Created output/by_vehicle/CNG576.csv, 1582 entries.\n", | |
| "Appended to output/by_vehicle/R426.csv, 112 entries.\n", | |
| "Created output/by_vehicle/743.csv, 852 entries.\n", | |
| "Appended to output/by_vehicle/202.csv, 317 entries.\n", | |
| "Created output/by_vehicle/693.csv, 466 entries.\n", | |
| "Created output/by_vehicle/R53.csv, 298 entries.\n", | |
| "Appended to output/by_vehicle/R367.csv, 441 entries.\n", | |
| "Created output/by_vehicle/1799.csv, 778 entries.\n", | |
| "Created output/by_vehicle/1663.csv, 1056 entries.\n", | |
| "Created output/by_vehicle/R245.csv, 138 entries.\n", | |
| "Appended to output/by_vehicle/1054.csv, 847 entries.\n", | |
| "Appended to output/by_vehicle/CNG582.csv, 279 entries.\n", | |
| "Appended to output/by_vehicle/R506.csv, 134 entries.\n", | |
| "Created output/by_vehicle/1158.csv, 369 entries.\n", | |
| "Appended to output/by_vehicle/579.csv, 374 entries.\n", | |
| "Created output/by_vehicle/620.csv, 646 entries.\n", | |
| "Created output/by_vehicle/R385.csv, 255 entries.\n", | |
| "Appended to output/by_vehicle/R630.csv, 83 entries.\n", | |
| "Appended to output/by_vehicle/588.csv, 374 entries.\n", | |
| "Appended to output/by_vehicle/746.csv, 169 entries.\n", | |
| "Appended to output/by_vehicle/CNG452.csv, 1564 entries.\n", | |
| "Appended to output/by_vehicle/728.csv, 32 entries.\n", | |
| "Created output/by_vehicle/R298.csv, 289 entries.\n", | |
| "Created output/by_vehicle/CNG326.csv, 1242 entries.\n", | |
| "Appended to output/by_vehicle/639.csv, 499 entries.\n", | |
| "Created output/by_vehicle/CNG431.csv, 1809 entries.\n", | |
| "Appended to output/by_vehicle/655.csv, 638 entries.\n", | |
| "Created output/by_vehicle/R381.csv, 173 entries.\n", | |
| "Created output/by_vehicle/1759.csv, 472 entries.\n", | |
| "Created output/by_vehicle/P194.csv, 152 entries.\n", | |
| "Created output/by_vehicle/P255.csv, 93 entries.\n", | |
| "Appended to output/by_vehicle/624.csv, 119 entries.\n", | |
| "Appended to output/by_vehicle/P381.csv, 805 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/R577.csv, 285 entries.\n", | |
| "Appended to output/by_vehicle/CNG29.csv, 17 entries.\n", | |
| "Appended to output/by_vehicle/467.csv, 1 entries.\n", | |
| "Appended to output/by_vehicle/CNG522.csv, 577 entries.\n", | |
| "Appended to output/by_vehicle/745.csv, 205 entries.\n", | |
| "Created output/by_vehicle/CNG121.csv, 413 entries.\n", | |
| "Appended to output/by_vehicle/1560.csv, 77 entries.\n", | |
| "Appended to output/by_vehicle/727.csv, 14 entries.\n", | |
| "Created output/by_vehicle/CNG544.csv, 37 entries.\n", | |
| "Appended to output/by_vehicle/R269.csv, 735 entries.\n", | |
| "Created output/by_vehicle/581.csv, 85 entries.\n", | |
| "Appended to output/by_vehicle/662.csv, 717 entries.\n", | |
| "Appended to output/by_vehicle/1098.csv, 488 entries.\n", | |
| "Created output/by_vehicle/699.csv, 104 entries.\n", | |
| "Appended to output/by_vehicle/CNG350.csv, 190 entries.\n", | |
| "Appended to output/by_vehicle/626.csv, 85 entries.\n", | |
| "Appended to output/by_vehicle/1196.csv, 154 entries.\n", | |
| "Created output/by_vehicle/1105.csv, 446 entries.\n", | |
| "Appended to output/by_vehicle/R487.csv, 27 entries.\n", | |
| "Created output/by_vehicle/571.csv, 39 entries.\n", | |
| "Created output/by_vehicle/R627.csv, 122 entries.\n", | |
| "Created output/by_vehicle/593.csv, 607 entries.\n", | |
| "Created output/by_vehicle/R226.csv, 122 entries.\n", | |
| "Appended to output/by_vehicle/R642.csv, 40 entries.\n", | |
| "Appended to output/by_vehicle/947.csv, 158 entries.\n", | |
| "Created output/by_vehicle/P192.csv, 318 entries.\n", | |
| "Created output/by_vehicle/R648.csv, 429 entries.\n", | |
| "Created output/by_vehicle/R247.csv, 519 entries.\n", | |
| "Created output/by_vehicle/R493.csv, 144 entries.\n", | |
| "Created output/by_vehicle/1460.csv, 118 entries.\n", | |
| "Appended to output/by_vehicle/R224.csv, 74 entries.\n", | |
| "Appended to output/by_vehicle/R596.csv, 274 entries.\n", | |
| "Appended to output/by_vehicle/CNG435.csv, 494 entries.\n", | |
| "Appended to output/by_vehicle/CNG311.csv, 175 entries.\n", | |
| "Appended to output/by_vehicle/R595.csv, 107 entries.\n", | |
| "Appended to output/by_vehicle/1191.csv, 86 entries.\n", | |
| "Created output/by_vehicle/912.csv, 46 entries.\n", | |
| "Appended to output/by_vehicle/584.csv, 69 entries.\n", | |
| "Appended to output/by_vehicle/R366.csv, 45 entries.\n", | |
| "Appended to output/by_vehicle/R182.csv, 18 entries.\n", | |
| "Appended to output/by_vehicle/R138.csv, 36 entries.\n", | |
| "Appended to output/by_vehicle/CNG321.csv, 206 entries.\n", | |
| "Appended to output/by_vehicle/CNG27.csv, 132 entries.\n", | |
| "Created output/by_vehicle/CNG61.csv, 38 entries.\n", | |
| "Created output/by_vehicle/1187.csv, 109 entries.\n", | |
| "Created output/by_vehicle/1701.csv, 47 entries.\n", | |
| "Appended to output/by_vehicle/CNG217.csv, 28 entries.\n", | |
| "Routes: ['146', '145', '174', '5', '151', '29', '177', '11', '358', '372', '43', '361', '64', '107', '85', '203', '215', '103', '19', '301', '195', '70A', '282', '281', '181C', '37', '125', '322', '12', '42', '202', '360', '348', '376', '327', '87', '126', '315', '169', '180', '205', '111', '312', '256', '14', '201', '208', '152', 'VJR2', '143', '139', '336', '284', '109', '155', '47', '299', '31', '158', '55', '53', '117', '346', '13', '192', '84', '302', '309', 'VJR3', '363A', '10', '204', '36', '163', '357', 'VJR4', '298', '24', '207', '2', '52', '97', '191', '140', '27', '233', '38', '121', '119', '118B', '276', '366', '305', '367', '133', '144', '94', '162', '332', '57', '159', '154', '123', '72', '347', '167', '368', '165', '170', '314', '56', '148', '217', '291', '369', '128', '168', '257', '7A', '186', '359', '209', '145A', 'VJR1', '50', '277A', '110', '303', '71', '292', '340', '367C', '141', '118', '187', '58', '68S', '135', '87F', '206', '181', '19D', '142', '175', '166', '80', '13A', '59', '164', '333', '320', '264', '63', '122', '297', '76', 'VJR5', '41', '363', '197', '108', '115P', '213', '100', '234', '317', '102', '30', '328', '17', '39', '189', '51', '117A', '158A(NEW)', '101', '279', '78', '501', '50B', '331', '323B', '60', '84B', '120', '19A', '85A', '304', '355', '337', '354', '379', 'VJR6', '324', '22A', '148A', '49', '374', '190', '326', '136', '149', '237', '344', '252', '105', '69', '52A', '343', '305B', '345', '304A', '116', '15', '302D', '335A', '307', '161', '203P', '26', nan]\n", | |
| "Appended to output/by_route/146.csv, 7851 entries.\n", | |
| "Appended to output/by_route/145.csv, 3538 entries.\n", | |
| "Appended to output/by_route/174.csv, 3897 entries.\n", | |
| "Appended to output/by_route/5.csv, 31835 entries.\n", | |
| "Appended to output/by_route/151.csv, 9707 entries.\n", | |
| "Appended to output/by_route/29.csv, 7287 entries.\n", | |
| "Appended to output/by_route/177.csv, 11227 entries.\n", | |
| "Appended to output/by_route/11.csv, 11635 entries.\n", | |
| "Appended to output/by_route/358.csv, 19219 entries.\n", | |
| "Appended to output/by_route/372.csv, 4687 entries.\n", | |
| "Appended to output/by_route/43.csv, 3008 entries.\n", | |
| "Appended to output/by_route/361.csv, 1536 entries.\n", | |
| "Appended to output/by_route/64.csv, 12866 entries.\n", | |
| "Appended to output/by_route/107.csv, 363 entries.\n", | |
| "Appended to output/by_route/85.csv, 2850 entries.\n", | |
| "Appended to output/by_route/203.csv, 5464 entries.\n", | |
| "Appended to output/by_route/215.csv, 4537 entries.\n", | |
| "Appended to output/by_route/103.csv, 13985 entries.\n", | |
| "Appended to output/by_route/19.csv, 10435 entries.\n", | |
| "Appended to output/by_route/301.csv, 12025 entries.\n", | |
| "Appended to output/by_route/195.csv, 2961 entries.\n", | |
| "Appended to output/by_route/70A.csv, 3663 entries.\n", | |
| "Appended to output/by_route/282.csv, 3870 entries.\n", | |
| "Appended to output/by_route/281.csv, 4604 entries.\n", | |
| "Appended to output/by_route/181C.csv, 4857 entries.\n", | |
| "Appended to output/by_route/37.csv, 5685 entries.\n", | |
| "Appended to output/by_route/125.csv, 3345 entries.\n", | |
| "Appended to output/by_route/322.csv, 5053 entries.\n", | |
| "Appended to output/by_route/12.csv, 8555 entries.\n", | |
| "Appended to output/by_route/42.csv, 23911 entries.\n", | |
| "Appended to output/by_route/202.csv, 17432 entries.\n", | |
| "Appended to output/by_route/360.csv, 828 entries.\n", | |
| "Appended to output/by_route/348.csv, 10357 entries.\n", | |
| "Appended to output/by_route/376.csv, 2303 entries.\n", | |
| "Appended to output/by_route/327.csv, 1658 entries.\n", | |
| "Appended to output/by_route/87.csv, 5637 entries.\n", | |
| "Appended to output/by_route/126.csv, 2974 entries.\n", | |
| "Appended to output/by_route/315.csv, 5772 entries.\n", | |
| "Appended to output/by_route/169.csv, 3302 entries.\n", | |
| "Appended to output/by_route/180.csv, 6674 entries.\n", | |
| "Appended to output/by_route/205.csv, 1043 entries.\n", | |
| "Appended to output/by_route/111.csv, 16270 entries.\n", | |
| "Appended to output/by_route/312.csv, 6343 entries.\n", | |
| "Appended to output/by_route/256.csv, 14367 entries.\n", | |
| "Appended to output/by_route/14.csv, 1358 entries.\n", | |
| "Appended to output/by_route/201.csv, 4754 entries.\n", | |
| "Appended to output/by_route/208.csv, 7274 entries.\n", | |
| "Appended to output/by_route/152.csv, 1867 entries.\n", | |
| "Appended to output/by_route/VJR2.csv, 3454 entries.\n", | |
| "Appended to output/by_route/143.csv, 3179 entries.\n", | |
| "Appended to output/by_route/139.csv, 10263 entries.\n", | |
| "Appended to output/by_route/336.csv, 8316 entries.\n", | |
| "Appended to output/by_route/284.csv, 3423 entries.\n", | |
| "Appended to output/by_route/109.csv, 6243 entries.\n", | |
| "Appended to output/by_route/155.csv, 11086 entries.\n", | |
| "Appended to output/by_route/47.csv, 1252 entries.\n", | |
| "Appended to output/by_route/299.csv, 3468 entries.\n", | |
| "Appended to output/by_route/31.csv, 12824 entries.\n", | |
| "Appended to output/by_route/158.csv, 8289 entries.\n", | |
| "Appended to output/by_route/55.csv, 2164 entries.\n", | |
| "Appended to output/by_route/53.csv, 2013 entries.\n", | |
| "Appended to output/by_route/117.csv, 609 entries.\n", | |
| "Appended to output/by_route/346.csv, 1924 entries.\n", | |
| "Appended to output/by_route/13.csv, 3534 entries.\n", | |
| "Appended to output/by_route/192.csv, 1634 entries.\n", | |
| "Appended to output/by_route/84.csv, 2050 entries.\n", | |
| "Appended to output/by_route/302.csv, 188 entries.\n", | |
| "Appended to output/by_route/309.csv, 5930 entries.\n", | |
| "Appended to output/by_route/VJR3.csv, 3109 entries.\n", | |
| "Appended to output/by_route/363A.csv, 322 entries.\n", | |
| "Appended to output/by_route/10.csv, 1525 entries.\n", | |
| "Appended to output/by_route/204.csv, 2379 entries.\n", | |
| "Appended to output/by_route/36.csv, 1125 entries.\n", | |
| "Appended to output/by_route/163.csv, 2780 entries.\n", | |
| "Appended to output/by_route/357.csv, 3636 entries.\n", | |
| "Appended to output/by_route/VJR4.csv, 3418 entries.\n", | |
| "Appended to output/by_route/298.csv, 2273 entries.\n", | |
| "Appended to output/by_route/24.csv, 5854 entries.\n", | |
| "Appended to output/by_route/207.csv, 11564 entries.\n", | |
| "Appended to output/by_route/2.csv, 15559 entries.\n", | |
| "Appended to output/by_route/52.csv, 3667 entries.\n", | |
| "Appended to output/by_route/97.csv, 1208 entries.\n", | |
| "Appended to output/by_route/191.csv, 1122 entries.\n", | |
| "Appended to output/by_route/140.csv, 4496 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_route/27.csv, 8377 entries.\n", | |
| "Appended to output/by_route/233.csv, 1820 entries.\n", | |
| "Appended to output/by_route/38.csv, 3239 entries.\n", | |
| "Appended to output/by_route/121.csv, 2780 entries.\n", | |
| "Appended to output/by_route/119.csv, 3062 entries.\n", | |
| "Appended to output/by_route/118B.csv, 726 entries.\n", | |
| "Appended to output/by_route/276.csv, 2237 entries.\n", | |
| "Appended to output/by_route/366.csv, 9 entries.\n", | |
| "Appended to output/by_route/305.csv, 8028 entries.\n", | |
| "Appended to output/by_route/367.csv, 3893 entries.\n", | |
| "Appended to output/by_route/133.csv, 1929 entries.\n", | |
| "Appended to output/by_route/144.csv, 1608 entries.\n", | |
| "Appended to output/by_route/94.csv, 10141 entries.\n", | |
| "Appended to output/by_route/162.csv, 1128 entries.\n", | |
| "Appended to output/by_route/332.csv, 3101 entries.\n", | |
| "Appended to output/by_route/57.csv, 5378 entries.\n", | |
| "Appended to output/by_route/159.csv, 1673 entries.\n", | |
| "Appended to output/by_route/154.csv, 1535 entries.\n", | |
| "Appended to output/by_route/123.csv, 4701 entries.\n", | |
| "Appended to output/by_route/72.csv, 1139 entries.\n", | |
| "Appended to output/by_route/347.csv, 1741 entries.\n", | |
| "Appended to output/by_route/167.csv, 5006 entries.\n", | |
| "Appended to output/by_route/368.csv, 5748 entries.\n", | |
| "Appended to output/by_route/165.csv, 1415 entries.\n", | |
| "Appended to output/by_route/170.csv, 4582 entries.\n", | |
| "Appended to output/by_route/314.csv, 1943 entries.\n", | |
| "Appended to output/by_route/56.csv, 5377 entries.\n", | |
| "Appended to output/by_route/148.csv, 7717 entries.\n", | |
| "Appended to output/by_route/217.csv, 657 entries.\n", | |
| "Appended to output/by_route/291.csv, 7797 entries.\n", | |
| "Appended to output/by_route/369.csv, 1785 entries.\n", | |
| "Appended to output/by_route/128.csv, 2108 entries.\n", | |
| "Appended to output/by_route/168.csv, 8012 entries.\n", | |
| "Appended to output/by_route/257.csv, 227 entries.\n", | |
| "Appended to output/by_route/7A.csv, 6662 entries.\n", | |
| "Appended to output/by_route/186.csv, 2013 entries.\n", | |
| "Appended to output/by_route/359.csv, 544 entries.\n", | |
| "Appended to output/by_route/209.csv, 1515 entries.\n", | |
| "Appended to output/by_route/145A.csv, 1726 entries.\n", | |
| "Appended to output/by_route/VJR1.csv, 7525 entries.\n", | |
| "Appended to output/by_route/50.csv, 1597 entries.\n", | |
| "Appended to output/by_route/277A.csv, 563 entries.\n", | |
| "Appended to output/by_route/110.csv, 2906 entries.\n", | |
| "Appended to output/by_route/303.csv, 3651 entries.\n", | |
| "Appended to output/by_route/71.csv, 683 entries.\n", | |
| "Appended to output/by_route/292.csv, 1576 entries.\n", | |
| "Appended to output/by_route/340.csv, 1406 entries.\n", | |
| "Appended to output/by_route/367C.csv, 510 entries.\n", | |
| "Appended to output/by_route/141.csv, 381 entries.\n", | |
| "Appended to output/by_route/118.csv, 3335 entries.\n", | |
| "Appended to output/by_route/187.csv, 9604 entries.\n", | |
| "Appended to output/by_route/58.csv, 2052 entries.\n", | |
| "Appended to output/by_route/68S.csv, 760 entries.\n", | |
| "Appended to output/by_route/135.csv, 2232 entries.\n", | |
| "Appended to output/by_route/87F.csv, 305 entries.\n", | |
| "Appended to output/by_route/206.csv, 1919 entries.\n", | |
| "Appended to output/by_route/181.csv, 3069 entries.\n", | |
| "Appended to output/by_route/19D.csv, 366 entries.\n", | |
| "Appended to output/by_route/142.csv, 1957 entries.\n", | |
| "Appended to output/by_route/175.csv, 716 entries.\n", | |
| "Appended to output/by_route/166.csv, 622 entries.\n", | |
| "Appended to output/by_route/80.csv, 1965 entries.\n", | |
| "Appended to output/by_route/13A.csv, 1666 entries.\n", | |
| "Appended to output/by_route/59.csv, 3758 entries.\n", | |
| "Created output/by_route/164.csv, 1041 entries.\n", | |
| "Appended to output/by_route/333.csv, 114 entries.\n", | |
| "Created output/by_route/320.csv, 152 entries.\n", | |
| "Appended to output/by_route/264.csv, 1810 entries.\n", | |
| "Appended to output/by_route/63.csv, 1521 entries.\n", | |
| "Appended to output/by_route/122.csv, 129 entries.\n", | |
| "Appended to output/by_route/297.csv, 2053 entries.\n", | |
| "Appended to output/by_route/76.csv, 1075 entries.\n", | |
| "Appended to output/by_route/VJR5.csv, 952 entries.\n", | |
| "Appended to output/by_route/41.csv, 940 entries.\n", | |
| "Appended to output/by_route/363.csv, 710 entries.\n", | |
| "Appended to output/by_route/197.csv, 3928 entries.\n", | |
| "Appended to output/by_route/108.csv, 1355 entries.\n", | |
| "Appended to output/by_route/115P.csv, 98 entries.\n", | |
| "Appended to output/by_route/213.csv, 94 entries.\n", | |
| "Appended to output/by_route/100.csv, 366 entries.\n", | |
| "Appended to output/by_route/234.csv, 484 entries.\n", | |
| "Appended to output/by_route/317.csv, 3209 entries.\n", | |
| "Appended to output/by_route/102.csv, 500 entries.\n", | |
| "Appended to output/by_route/30.csv, 692 entries.\n", | |
| "Appended to output/by_route/328.csv, 666 entries.\n", | |
| "Created output/by_route/17.csv, 112 entries.\n", | |
| "Appended to output/by_route/39.csv, 1045 entries.\n", | |
| "Appended to output/by_route/189.csv, 1419 entries.\n", | |
| "Appended to output/by_route/51.csv, 803 entries.\n", | |
| "Appended to output/by_route/117A.csv, 1774 entries.\n", | |
| "Appended to output/by_route/158A(NEW).csv, 34 entries.\n", | |
| "Appended to output/by_route/101.csv, 4089 entries.\n", | |
| "Appended to output/by_route/279.csv, 1496 entries.\n", | |
| "Appended to output/by_route/78.csv, 863 entries.\n", | |
| "Appended to output/by_route/501.csv, 273 entries.\n", | |
| "Appended to output/by_route/50B.csv, 494 entries.\n", | |
| "Appended to output/by_route/331.csv, 1675 entries.\n", | |
| "Appended to output/by_route/323B.csv, 40 entries.\n", | |
| "Appended to output/by_route/60.csv, 123 entries.\n", | |
| "Appended to output/by_route/84B.csv, 90 entries.\n", | |
| "Appended to output/by_route/120.csv, 5423 entries.\n", | |
| "Appended to output/by_route/19A.csv, 63 entries.\n", | |
| "Appended to output/by_route/85A.csv, 217 entries.\n", | |
| "Appended to output/by_route/304.csv, 98 entries.\n", | |
| "Appended to output/by_route/355.csv, 412 entries.\n", | |
| "Appended to output/by_route/337.csv, 186 entries.\n", | |
| "Appended to output/by_route/354.csv, 3675 entries.\n", | |
| "Appended to output/by_route/379.csv, 371 entries.\n", | |
| "Appended to output/by_route/VJR6.csv, 200 entries.\n", | |
| "Appended to output/by_route/324.csv, 324 entries.\n", | |
| "Appended to output/by_route/22A.csv, 2 entries.\n", | |
| "Appended to output/by_route/148A.csv, 1418 entries.\n", | |
| "Created output/by_route/49.csv, 323 entries.\n", | |
| "Appended to output/by_route/374.csv, 125 entries.\n", | |
| "Appended to output/by_route/190.csv, 170 entries.\n", | |
| "Appended to output/by_route/326.csv, 69 entries.\n", | |
| "Appended to output/by_route/136.csv, 135 entries.\n", | |
| "Appended to output/by_route/149.csv, 218 entries.\n", | |
| "Appended to output/by_route/237.csv, 993 entries.\n", | |
| "Created output/by_route/344.csv, 30 entries.\n", | |
| "Created output/by_route/252.csv, 157 entries.\n", | |
| "Appended to output/by_route/105.csv, 139 entries.\n", | |
| "Appended to output/by_route/69.csv, 92 entries.\n", | |
| "Appended to output/by_route/52A.csv, 733 entries.\n", | |
| "Appended to output/by_route/343.csv, 550 entries.\n", | |
| "Appended to output/by_route/305B.csv, 376 entries.\n", | |
| "Created output/by_route/345.csv, 37 entries.\n", | |
| "Appended to output/by_route/304A.csv, 13 entries.\n", | |
| "Appended to output/by_route/116.csv, 43 entries.\n", | |
| "Appended to output/by_route/15.csv, 521 entries.\n", | |
| "Appended to output/by_route/302D.csv, 401 entries.\n", | |
| "Appended to output/by_route/335A.csv, 50 entries.\n", | |
| "Appended to output/by_route/307.csv, 259 entries.\n", | |
| "Created output/by_route/161.csv, 44 entries.\n", | |
| "Appended to output/by_route/203P.csv, 105 entries.\n", | |
| "Appended to output/by_route/26.csv, 78 entries.\n", | |
| "Created output/by_route/nan.csv, 0 entries.\n", | |
| "Vehicles: ['1202', '1205', '1206', '1207', '1209', '1210', '1224', '1230', '1244', '1257', '1264', '1276', '1280', '1447', '1465', '1471', '1477', '1498', '1534', '1548', '1571', '1579', '1598', '1690', '1720', '1723', '1726', '1732', '1743', '1781', '1806', '1808', 'CNG01', 'CNG20', 'CNG31', 'CNG34', 'CNG57', 'CNG72', 'R594', 'R269', 'CNG326', 'CNG228', 'CNG569', 'CNG324', 'CNG421', 'CNG460', 'CNG582', 'CNG36', 'CNG93', 'CNG52', 'CNG494', 'CNG229', 'CNG470', 'CNG331', '1124', 'CNG319', 'CNG575', 'CNG562', 'CNG431', 'CNG32', 'CNG414', 'CNG215', 'CNG529', 'CNG321', 'CNG428', 'CNG474', 'CNG475', 'CNG477', 'P381', 'R274', 'CNG456', '1246', '1535', 'CNG218', 'CNG435', '1802', 'R635', '1713', '1214', 'BDV 390', 'CNG441', 'CNG25', '1142', '924', '1752', '893', '1695', '1694', 'CNG216', 'CNG366', 'CNG372', '559', '576', '574', '593', '587', '584', '631', '642', '623', '659', '662', '670', '705', '666', '597', '1255', '721', '1132', '734', '1681', '743', '488', 'CNG362', 'CNG338', 'R474', 'R417', 'R425', 'R573', 'R244', 'R599', 'P170', 'P168', 'R325', 'R595', '202', '912', '948', '949', '1002', '1021', '1022', '1113', '1114', '1116', '1140', '1149', '1155', '1169', '1170', '1172', '1184', '1200', '1219', '1687', '1756', 'CNG433', 'R615', 'CNG422', '663', 'CNG210', '979', 'R247', 'R600', '909', '1284', '1755', '747', 'R357', 'P192', 'R608', '1015', '1566', '1803', 'CNG33', 'R501', 'CNG510', 'CNG370', '1148', '709', '1006', 'CNG454', '1262', 'R393', 'R431', 'CNG43', 'CNG446', '984', 'R596', '1217', '1800', 'CNG65', 'CNG445', '1107', '1795', '1187', '563', '600', 'CNG522', '603', 'CNG309', 'CNG531', '1162', '1570', '998', '624', 'CNG437', '558', 'CNG543', 'R489', 'R368', '1578', '1105', '1676', '749', '653', 'CNG526', 'CNG325', '1473', 'CNG80', 'CNG576', '1000', 'CNG27', 'CNG580', '1797', '751', 'CNG211', '1565', 'R345', '1449', 'CNG73', 'R639', 'R411', '1294', '590', '1711', '1675', '1799', '1293', '633', '579', 'CNG317', '1701', '1661', 'R578', 'R114', '1054', '560', '1618', 'CNG363', 'CNG51', '1490', 'R369', '1277', '628', '1783', '1747', 'R341', 'CNG19', '578', '610', '1193', '608', 'CNG164', '566', '1714', 'CNG343', '1242', 'CNG554', '605', '616', '622', 'R607', '595', '599', '1767', 'CNG484', '1621', 'CNG396', '722', '1444', 'CNG49', '648', '682', '617', '1253', '1470', '733', 'CNG47', '1536', 'R429', 'CNG150', '1062', '1144', 'R309', '638', 'CNG221', '629', '577', '569', 'R300', '1569', '1567', '665', '927', '1223', 'R397', '643', '1564', '1577', 'CNG552', '1069', 'CNG573', '1685', '655', 'R385', '1712', '746', '1482', '677', 'P182', 'R224', '583', 'CNG567', '1759', '1692', 'CNG252', '1014', 'R53', '1450', 'CNG12', 'R434', 'R235', '701', 'CNG40', '632', '652', '1446', '732', 'CNG115', 'R231', '1730', 'R570', 'CNG328', 'R09', '1560', 'R627', '706', 'R606', '1725', '937', 'CNG214', 'R634', '1682', '613', '975', 'CNG423', 'P389', '1011', 'P247', '646', 'R234', 'R321', 'R366', '1616', '1677', 'R367', 'P243', 'P255', 'CNG163', 'R257', '1555', 'CNG83', '745', 'P260', '916', 'R653', '1594', 'R428', '1274', '944', '1226', '1526', 'CNG133', 'R371', 'CNG541', '681', '728', 'R243', '1001', '723', '1716', '609', '1098', '675', 'R246', '1238', 'CNG347', '942', '1543', '1619', '1196', '1460', 'CNG07', 'CNG39', '900', '1557', '1267', 'CNG461', '1724', '1773', '1112', 'CNG550', 'CNG08', '1241', 'CNG44', '1722', 'CNG438', '592', '658', '1757', '606', '953', 'CNG376', '1291', '585', 'CNG323', '712', '614', 'CNG61', 'R514', 'CNG449', 'CNG144', 'R577', 'R517', 'R487', 'R138', 'CNG444', 'R264', 'R381', '591', 'R226', 'R398', 'R642', 'CNG452', '1175', 'CNG443', 'P257', 'R547', '947', '644', 'CNG548', '1481', 'CNG578', 'R648', 'CNG124', 'CNG147', '582', 'R609', 'R182', 'CNG585', 'R320', 'R641', 'R241', 'CNG91', '974', '1268', 'R336', 'R490', 'P404', '1201', '557', 'CNG282', 'R630', 'R223', 'R382', 'R426', 'R119', 'CNG487', 'CNG121', 'CNG101', '939', 'R512', 'CNG462', 'R384', 'CNG551', '938', 'CNG311', '1586', '607', '679', 'CNG238', 'R331', '744', 'R427', 'P167', 'R363', '735', 'P267', '602', '1123', '755', 'CNG103', '619', '621', '1125', '650', '1719', '601', 'CNG530', 'CNG217', 'CNG549', 'R484', 'CNG432', 'CNG130', '1111', '467', '645', 'R402', 'R332', '973', 'R396', 'CNG165', 'R590', '1020', '727', 'R601', '703', 'R388', '656', '699', 'R270', 'R301', 'R414', 'CNG114', '626', '615', 'CNG345', 'R589', '1168', '588', '1792', 'CNG111', 'R616', 'R471', 'CNG500', 'CNG568', 'CNG135', 'R613', 'R237', '690', 'CNG385', '754', '618', 'R168', '729', 'CNG350', '589', 'CNG413', 'CNG583', 'P198', '668', '1475', '568', 'R372', 'P262', '1671', 'CNG139', 'CNG380', '635', '1740', 'P195', '571', '687', 'R279', 'CNG566', 'P265', '641', 'CNG29', '1236', 'R06', '1787', nan]\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/1202.csv, 2934 entries.\n", | |
| "Appended to output/by_vehicle/1205.csv, 2804 entries.\n", | |
| "Appended to output/by_vehicle/1206.csv, 3276 entries.\n", | |
| "Appended to output/by_vehicle/1207.csv, 2419 entries.\n", | |
| "Appended to output/by_vehicle/1209.csv, 879 entries.\n", | |
| "Appended to output/by_vehicle/1210.csv, 5121 entries.\n", | |
| "Appended to output/by_vehicle/1224.csv, 2820 entries.\n", | |
| "Appended to output/by_vehicle/1230.csv, 1302 entries.\n", | |
| "Appended to output/by_vehicle/1244.csv, 3812 entries.\n", | |
| "Appended to output/by_vehicle/1257.csv, 1783 entries.\n", | |
| "Appended to output/by_vehicle/1264.csv, 5824 entries.\n", | |
| "Appended to output/by_vehicle/1276.csv, 2247 entries.\n", | |
| "Appended to output/by_vehicle/1280.csv, 2512 entries.\n", | |
| "Appended to output/by_vehicle/1447.csv, 2364 entries.\n", | |
| "Appended to output/by_vehicle/1465.csv, 1998 entries.\n", | |
| "Appended to output/by_vehicle/1471.csv, 2626 entries.\n", | |
| "Appended to output/by_vehicle/1477.csv, 450 entries.\n", | |
| "Appended to output/by_vehicle/1498.csv, 373 entries.\n", | |
| "Appended to output/by_vehicle/1534.csv, 5479 entries.\n", | |
| "Appended to output/by_vehicle/1548.csv, 683 entries.\n", | |
| "Appended to output/by_vehicle/1571.csv, 3067 entries.\n", | |
| "Appended to output/by_vehicle/1579.csv, 2640 entries.\n", | |
| "Appended to output/by_vehicle/1598.csv, 718 entries.\n", | |
| "Appended to output/by_vehicle/1690.csv, 3195 entries.\n", | |
| "Appended to output/by_vehicle/1720.csv, 6111 entries.\n", | |
| "Appended to output/by_vehicle/1723.csv, 109 entries.\n", | |
| "Appended to output/by_vehicle/1726.csv, 1263 entries.\n", | |
| "Appended to output/by_vehicle/1732.csv, 2487 entries.\n", | |
| "Appended to output/by_vehicle/1743.csv, 4808 entries.\n", | |
| "Appended to output/by_vehicle/1781.csv, 3663 entries.\n", | |
| "Appended to output/by_vehicle/1806.csv, 1943 entries.\n", | |
| "Appended to output/by_vehicle/1808.csv, 1099 entries.\n", | |
| "Appended to output/by_vehicle/CNG01.csv, 2869 entries.\n", | |
| "Appended to output/by_vehicle/CNG20.csv, 5205 entries.\n", | |
| "Appended to output/by_vehicle/CNG31.csv, 3779 entries.\n", | |
| "Appended to output/by_vehicle/CNG34.csv, 1674 entries.\n", | |
| "Appended to output/by_vehicle/CNG57.csv, 1988 entries.\n", | |
| "Appended to output/by_vehicle/CNG72.csv, 2090 entries.\n", | |
| "Appended to output/by_vehicle/R594.csv, 1005 entries.\n", | |
| "Appended to output/by_vehicle/R269.csv, 647 entries.\n", | |
| "Appended to output/by_vehicle/CNG326.csv, 1026 entries.\n", | |
| "Appended to output/by_vehicle/CNG228.csv, 1133 entries.\n", | |
| "Appended to output/by_vehicle/CNG569.csv, 1095 entries.\n", | |
| "Appended to output/by_vehicle/CNG324.csv, 1515 entries.\n", | |
| "Appended to output/by_vehicle/CNG421.csv, 1146 entries.\n", | |
| "Appended to output/by_vehicle/CNG460.csv, 1774 entries.\n", | |
| "Appended to output/by_vehicle/CNG582.csv, 2392 entries.\n", | |
| "Appended to output/by_vehicle/CNG36.csv, 1993 entries.\n", | |
| "Appended to output/by_vehicle/CNG93.csv, 846 entries.\n", | |
| "Appended to output/by_vehicle/CNG52.csv, 561 entries.\n", | |
| "Appended to output/by_vehicle/CNG494.csv, 1759 entries.\n", | |
| "Appended to output/by_vehicle/CNG229.csv, 868 entries.\n", | |
| "Appended to output/by_vehicle/CNG470.csv, 958 entries.\n", | |
| "Appended to output/by_vehicle/CNG331.csv, 1957 entries.\n", | |
| "Appended to output/by_vehicle/1124.csv, 2037 entries.\n", | |
| "Appended to output/by_vehicle/CNG319.csv, 1616 entries.\n", | |
| "Appended to output/by_vehicle/CNG575.csv, 1904 entries.\n", | |
| "Appended to output/by_vehicle/CNG562.csv, 2414 entries.\n", | |
| "Appended to output/by_vehicle/CNG431.csv, 1358 entries.\n", | |
| "Appended to output/by_vehicle/CNG32.csv, 1551 entries.\n", | |
| "Appended to output/by_vehicle/CNG414.csv, 3792 entries.\n", | |
| "Appended to output/by_vehicle/CNG215.csv, 709 entries.\n", | |
| "Appended to output/by_vehicle/CNG529.csv, 4184 entries.\n", | |
| "Appended to output/by_vehicle/CNG321.csv, 1642 entries.\n", | |
| "Appended to output/by_vehicle/CNG428.csv, 435 entries.\n", | |
| "Appended to output/by_vehicle/CNG474.csv, 1867 entries.\n", | |
| "Appended to output/by_vehicle/CNG475.csv, 2511 entries.\n", | |
| "Appended to output/by_vehicle/CNG477.csv, 1351 entries.\n", | |
| "Appended to output/by_vehicle/P381.csv, 825 entries.\n", | |
| "Appended to output/by_vehicle/R274.csv, 1704 entries.\n", | |
| "Appended to output/by_vehicle/CNG456.csv, 1707 entries.\n", | |
| "Appended to output/by_vehicle/1246.csv, 2453 entries.\n", | |
| "Appended to output/by_vehicle/1535.csv, 2793 entries.\n", | |
| "Appended to output/by_vehicle/CNG218.csv, 1359 entries.\n", | |
| "Appended to output/by_vehicle/CNG435.csv, 3818 entries.\n", | |
| "Appended to output/by_vehicle/1802.csv, 1440 entries.\n", | |
| "Appended to output/by_vehicle/R635.csv, 1532 entries.\n", | |
| "Appended to output/by_vehicle/1713.csv, 4907 entries.\n", | |
| "Appended to output/by_vehicle/1214.csv, 2302 entries.\n", | |
| "Appended to output/by_vehicle/BDV 390.csv, 6388 entries.\n", | |
| "Appended to output/by_vehicle/CNG441.csv, 1613 entries.\n", | |
| "Appended to output/by_vehicle/CNG25.csv, 3278 entries.\n", | |
| "Appended to output/by_vehicle/1142.csv, 1169 entries.\n", | |
| "Appended to output/by_vehicle/924.csv, 1587 entries.\n", | |
| "Appended to output/by_vehicle/1752.csv, 3141 entries.\n", | |
| "Appended to output/by_vehicle/893.csv, 7191 entries.\n", | |
| "Appended to output/by_vehicle/1695.csv, 5667 entries.\n", | |
| "Appended to output/by_vehicle/1694.csv, 4618 entries.\n", | |
| "Appended to output/by_vehicle/CNG216.csv, 4030 entries.\n", | |
| "Appended to output/by_vehicle/CNG366.csv, 3922 entries.\n", | |
| "Appended to output/by_vehicle/CNG372.csv, 1822 entries.\n", | |
| "Appended to output/by_vehicle/559.csv, 43 entries.\n", | |
| "Appended to output/by_vehicle/576.csv, 254 entries.\n", | |
| "Appended to output/by_vehicle/574.csv, 2142 entries.\n", | |
| "Appended to output/by_vehicle/593.csv, 92 entries.\n", | |
| "Appended to output/by_vehicle/587.csv, 1463 entries.\n", | |
| "Appended to output/by_vehicle/584.csv, 89 entries.\n", | |
| "Appended to output/by_vehicle/631.csv, 506 entries.\n", | |
| "Appended to output/by_vehicle/642.csv, 646 entries.\n", | |
| "Appended to output/by_vehicle/623.csv, 1924 entries.\n", | |
| "Appended to output/by_vehicle/659.csv, 1158 entries.\n", | |
| "Appended to output/by_vehicle/662.csv, 231 entries.\n", | |
| "Appended to output/by_vehicle/670.csv, 1154 entries.\n", | |
| "Appended to output/by_vehicle/705.csv, 486 entries.\n", | |
| "Appended to output/by_vehicle/666.csv, 1395 entries.\n", | |
| "Appended to output/by_vehicle/597.csv, 1994 entries.\n", | |
| "Appended to output/by_vehicle/1255.csv, 3495 entries.\n", | |
| "Appended to output/by_vehicle/721.csv, 89 entries.\n", | |
| "Appended to output/by_vehicle/1132.csv, 3500 entries.\n", | |
| "Appended to output/by_vehicle/734.csv, 1875 entries.\n", | |
| "Appended to output/by_vehicle/1681.csv, 1013 entries.\n", | |
| "Appended to output/by_vehicle/743.csv, 209 entries.\n", | |
| "Appended to output/by_vehicle/488.csv, 6150 entries.\n", | |
| "Appended to output/by_vehicle/CNG362.csv, 2348 entries.\n", | |
| "Appended to output/by_vehicle/CNG338.csv, 3732 entries.\n", | |
| "Appended to output/by_vehicle/R474.csv, 462 entries.\n", | |
| "Appended to output/by_vehicle/R417.csv, 334 entries.\n", | |
| "Appended to output/by_vehicle/R425.csv, 526 entries.\n", | |
| "Appended to output/by_vehicle/R573.csv, 1554 entries.\n", | |
| "Appended to output/by_vehicle/R244.csv, 36 entries.\n", | |
| "Appended to output/by_vehicle/R599.csv, 2287 entries.\n", | |
| "Appended to output/by_vehicle/P170.csv, 500 entries.\n", | |
| "Appended to output/by_vehicle/P168.csv, 1210 entries.\n", | |
| "Appended to output/by_vehicle/R325.csv, 1343 entries.\n", | |
| "Appended to output/by_vehicle/R595.csv, 900 entries.\n", | |
| "Appended to output/by_vehicle/202.csv, 685 entries.\n", | |
| "Appended to output/by_vehicle/912.csv, 632 entries.\n", | |
| "Appended to output/by_vehicle/948.csv, 2410 entries.\n", | |
| "Appended to output/by_vehicle/949.csv, 3049 entries.\n", | |
| "Appended to output/by_vehicle/1002.csv, 5042 entries.\n", | |
| "Appended to output/by_vehicle/1021.csv, 3774 entries.\n", | |
| "Appended to output/by_vehicle/1022.csv, 3096 entries.\n", | |
| "Appended to output/by_vehicle/1113.csv, 1307 entries.\n", | |
| "Appended to output/by_vehicle/1114.csv, 2639 entries.\n", | |
| "Appended to output/by_vehicle/1116.csv, 876 entries.\n", | |
| "Appended to output/by_vehicle/1140.csv, 3080 entries.\n", | |
| "Appended to output/by_vehicle/1149.csv, 501 entries.\n", | |
| "Appended to output/by_vehicle/1155.csv, 6501 entries.\n", | |
| "Appended to output/by_vehicle/1169.csv, 2793 entries.\n", | |
| "Appended to output/by_vehicle/1170.csv, 5102 entries.\n", | |
| "Appended to output/by_vehicle/1172.csv, 1827 entries.\n", | |
| "Appended to output/by_vehicle/1184.csv, 3822 entries.\n", | |
| "Appended to output/by_vehicle/1200.csv, 1820 entries.\n", | |
| "Appended to output/by_vehicle/1219.csv, 4601 entries.\n", | |
| "Appended to output/by_vehicle/1687.csv, 2229 entries.\n", | |
| "Appended to output/by_vehicle/1756.csv, 3358 entries.\n", | |
| "Appended to output/by_vehicle/CNG433.csv, 4650 entries.\n", | |
| "Appended to output/by_vehicle/R615.csv, 906 entries.\n", | |
| "Appended to output/by_vehicle/CNG422.csv, 948 entries.\n", | |
| "Appended to output/by_vehicle/663.csv, 564 entries.\n", | |
| "Appended to output/by_vehicle/CNG210.csv, 2917 entries.\n", | |
| "Appended to output/by_vehicle/979.csv, 5864 entries.\n", | |
| "Appended to output/by_vehicle/R247.csv, 71 entries.\n", | |
| "Appended to output/by_vehicle/R600.csv, 636 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/909.csv, 1445 entries.\n", | |
| "Appended to output/by_vehicle/1284.csv, 1387 entries.\n", | |
| "Appended to output/by_vehicle/1755.csv, 2042 entries.\n", | |
| "Appended to output/by_vehicle/747.csv, 709 entries.\n", | |
| "Appended to output/by_vehicle/R357.csv, 1205 entries.\n", | |
| "Appended to output/by_vehicle/P192.csv, 932 entries.\n", | |
| "Appended to output/by_vehicle/R608.csv, 860 entries.\n", | |
| "Appended to output/by_vehicle/1015.csv, 1962 entries.\n", | |
| "Appended to output/by_vehicle/1566.csv, 2988 entries.\n", | |
| "Appended to output/by_vehicle/1803.csv, 2186 entries.\n", | |
| "Appended to output/by_vehicle/CNG33.csv, 3902 entries.\n", | |
| "Appended to output/by_vehicle/R501.csv, 905 entries.\n", | |
| "Appended to output/by_vehicle/CNG510.csv, 2812 entries.\n", | |
| "Appended to output/by_vehicle/CNG370.csv, 2559 entries.\n", | |
| "Appended to output/by_vehicle/1148.csv, 1128 entries.\n", | |
| "Appended to output/by_vehicle/709.csv, 3298 entries.\n", | |
| "Appended to output/by_vehicle/1006.csv, 314 entries.\n", | |
| "Appended to output/by_vehicle/CNG454.csv, 1680 entries.\n", | |
| "Appended to output/by_vehicle/1262.csv, 3129 entries.\n", | |
| "Appended to output/by_vehicle/R393.csv, 183 entries.\n", | |
| "Appended to output/by_vehicle/R431.csv, 167 entries.\n", | |
| "Appended to output/by_vehicle/CNG43.csv, 638 entries.\n", | |
| "Appended to output/by_vehicle/CNG446.csv, 3499 entries.\n", | |
| "Appended to output/by_vehicle/984.csv, 1890 entries.\n", | |
| "Appended to output/by_vehicle/R596.csv, 843 entries.\n", | |
| "Appended to output/by_vehicle/1217.csv, 576 entries.\n", | |
| "Appended to output/by_vehicle/1800.csv, 2283 entries.\n", | |
| "Appended to output/by_vehicle/CNG65.csv, 305 entries.\n", | |
| "Appended to output/by_vehicle/CNG445.csv, 1810 entries.\n", | |
| "Appended to output/by_vehicle/1107.csv, 2712 entries.\n", | |
| "Appended to output/by_vehicle/1795.csv, 2516 entries.\n", | |
| "Appended to output/by_vehicle/1187.csv, 1717 entries.\n", | |
| "Appended to output/by_vehicle/563.csv, 1066 entries.\n", | |
| "Appended to output/by_vehicle/600.csv, 1646 entries.\n", | |
| "Appended to output/by_vehicle/CNG522.csv, 378 entries.\n", | |
| "Appended to output/by_vehicle/603.csv, 2778 entries.\n", | |
| "Appended to output/by_vehicle/CNG309.csv, 2398 entries.\n", | |
| "Appended to output/by_vehicle/CNG531.csv, 1623 entries.\n", | |
| "Appended to output/by_vehicle/1162.csv, 970 entries.\n", | |
| "Appended to output/by_vehicle/1570.csv, 3857 entries.\n", | |
| "Appended to output/by_vehicle/998.csv, 2369 entries.\n", | |
| "Appended to output/by_vehicle/624.csv, 806 entries.\n", | |
| "Appended to output/by_vehicle/CNG437.csv, 5612 entries.\n", | |
| "Appended to output/by_vehicle/558.csv, 2096 entries.\n", | |
| "Appended to output/by_vehicle/CNG543.csv, 1615 entries.\n", | |
| "Appended to output/by_vehicle/R489.csv, 293 entries.\n", | |
| "Appended to output/by_vehicle/R368.csv, 791 entries.\n", | |
| "Appended to output/by_vehicle/1578.csv, 4461 entries.\n", | |
| "Appended to output/by_vehicle/1105.csv, 3103 entries.\n", | |
| "Appended to output/by_vehicle/1676.csv, 408 entries.\n", | |
| "Appended to output/by_vehicle/749.csv, 283 entries.\n", | |
| "Appended to output/by_vehicle/653.csv, 2281 entries.\n", | |
| "Appended to output/by_vehicle/CNG526.csv, 4304 entries.\n", | |
| "Appended to output/by_vehicle/CNG325.csv, 3043 entries.\n", | |
| "Appended to output/by_vehicle/1473.csv, 339 entries.\n", | |
| "Appended to output/by_vehicle/CNG80.csv, 737 entries.\n", | |
| "Appended to output/by_vehicle/CNG576.csv, 106 entries.\n", | |
| "Appended to output/by_vehicle/1000.csv, 5918 entries.\n", | |
| "Appended to output/by_vehicle/CNG27.csv, 3371 entries.\n", | |
| "Appended to output/by_vehicle/CNG580.csv, 967 entries.\n", | |
| "Appended to output/by_vehicle/1797.csv, 1951 entries.\n", | |
| "Appended to output/by_vehicle/751.csv, 1785 entries.\n", | |
| "Appended to output/by_vehicle/CNG211.csv, 2381 entries.\n", | |
| "Appended to output/by_vehicle/1565.csv, 2419 entries.\n", | |
| "Appended to output/by_vehicle/R345.csv, 1530 entries.\n", | |
| "Appended to output/by_vehicle/1449.csv, 5226 entries.\n", | |
| "Appended to output/by_vehicle/CNG73.csv, 3917 entries.\n", | |
| "Appended to output/by_vehicle/R639.csv, 4 entries.\n", | |
| "Appended to output/by_vehicle/R411.csv, 43 entries.\n", | |
| "Appended to output/by_vehicle/1294.csv, 1820 entries.\n", | |
| "Appended to output/by_vehicle/590.csv, 2485 entries.\n", | |
| "Appended to output/by_vehicle/1711.csv, 5133 entries.\n", | |
| "Appended to output/by_vehicle/1675.csv, 1549 entries.\n", | |
| "Appended to output/by_vehicle/1799.csv, 145 entries.\n", | |
| "Appended to output/by_vehicle/1293.csv, 3765 entries.\n", | |
| "Appended to output/by_vehicle/633.csv, 544 entries.\n", | |
| "Appended to output/by_vehicle/579.csv, 1284 entries.\n", | |
| "Appended to output/by_vehicle/CNG317.csv, 1 entries.\n", | |
| "Appended to output/by_vehicle/1701.csv, 662 entries.\n", | |
| "Appended to output/by_vehicle/1661.csv, 2805 entries.\n", | |
| "Appended to output/by_vehicle/R578.csv, 487 entries.\n", | |
| "Appended to output/by_vehicle/R114.csv, 498 entries.\n", | |
| "Appended to output/by_vehicle/1054.csv, 1815 entries.\n", | |
| "Appended to output/by_vehicle/560.csv, 1795 entries.\n", | |
| "Appended to output/by_vehicle/1618.csv, 2644 entries.\n", | |
| "Appended to output/by_vehicle/CNG363.csv, 1964 entries.\n", | |
| "Appended to output/by_vehicle/CNG51.csv, 3040 entries.\n", | |
| "Appended to output/by_vehicle/1490.csv, 2165 entries.\n", | |
| "Appended to output/by_vehicle/R369.csv, 868 entries.\n", | |
| "Appended to output/by_vehicle/1277.csv, 931 entries.\n", | |
| "Appended to output/by_vehicle/628.csv, 312 entries.\n", | |
| "Appended to output/by_vehicle/1783.csv, 2962 entries.\n", | |
| "Appended to output/by_vehicle/1747.csv, 1917 entries.\n", | |
| "Created output/by_vehicle/R341.csv, 33 entries.\n", | |
| "Appended to output/by_vehicle/CNG19.csv, 853 entries.\n", | |
| "Appended to output/by_vehicle/578.csv, 1049 entries.\n", | |
| "Appended to output/by_vehicle/610.csv, 2833 entries.\n", | |
| "Appended to output/by_vehicle/1193.csv, 480 entries.\n", | |
| "Appended to output/by_vehicle/608.csv, 965 entries.\n", | |
| "Appended to output/by_vehicle/CNG164.csv, 1736 entries.\n", | |
| "Appended to output/by_vehicle/566.csv, 1632 entries.\n", | |
| "Appended to output/by_vehicle/1714.csv, 3664 entries.\n", | |
| "Appended to output/by_vehicle/CNG343.csv, 2989 entries.\n", | |
| "Appended to output/by_vehicle/1242.csv, 1421 entries.\n", | |
| "Appended to output/by_vehicle/CNG554.csv, 1340 entries.\n", | |
| "Appended to output/by_vehicle/605.csv, 1406 entries.\n", | |
| "Appended to output/by_vehicle/616.csv, 2066 entries.\n", | |
| "Appended to output/by_vehicle/622.csv, 1407 entries.\n", | |
| "Appended to output/by_vehicle/R607.csv, 641 entries.\n", | |
| "Appended to output/by_vehicle/595.csv, 1689 entries.\n", | |
| "Appended to output/by_vehicle/599.csv, 648 entries.\n", | |
| "Appended to output/by_vehicle/1767.csv, 32 entries.\n", | |
| "Appended to output/by_vehicle/CNG484.csv, 29 entries.\n", | |
| "Appended to output/by_vehicle/1621.csv, 780 entries.\n", | |
| "Appended to output/by_vehicle/CNG396.csv, 2404 entries.\n", | |
| "Appended to output/by_vehicle/722.csv, 1708 entries.\n", | |
| "Appended to output/by_vehicle/1444.csv, 1521 entries.\n", | |
| "Appended to output/by_vehicle/CNG49.csv, 2062 entries.\n", | |
| "Appended to output/by_vehicle/648.csv, 1009 entries.\n", | |
| "Appended to output/by_vehicle/682.csv, 840 entries.\n", | |
| "Appended to output/by_vehicle/617.csv, 245 entries.\n", | |
| "Appended to output/by_vehicle/1253.csv, 2096 entries.\n", | |
| "Appended to output/by_vehicle/1470.csv, 952 entries.\n", | |
| "Appended to output/by_vehicle/733.csv, 138 entries.\n", | |
| "Appended to output/by_vehicle/CNG47.csv, 2531 entries.\n", | |
| "Appended to output/by_vehicle/1536.csv, 2749 entries.\n", | |
| "Appended to output/by_vehicle/R429.csv, 1283 entries.\n", | |
| "Appended to output/by_vehicle/CNG150.csv, 286 entries.\n", | |
| "Appended to output/by_vehicle/1062.csv, 2577 entries.\n", | |
| "Appended to output/by_vehicle/1144.csv, 1156 entries.\n", | |
| "Appended to output/by_vehicle/R309.csv, 65 entries.\n", | |
| "Appended to output/by_vehicle/638.csv, 99 entries.\n", | |
| "Appended to output/by_vehicle/CNG221.csv, 437 entries.\n", | |
| "Appended to output/by_vehicle/629.csv, 283 entries.\n", | |
| "Appended to output/by_vehicle/577.csv, 1230 entries.\n", | |
| "Appended to output/by_vehicle/569.csv, 2222 entries.\n", | |
| "Created output/by_vehicle/R300.csv, 295 entries.\n", | |
| "Appended to output/by_vehicle/1569.csv, 924 entries.\n", | |
| "Appended to output/by_vehicle/1567.csv, 584 entries.\n", | |
| "Appended to output/by_vehicle/665.csv, 716 entries.\n", | |
| "Appended to output/by_vehicle/927.csv, 198 entries.\n", | |
| "Appended to output/by_vehicle/1223.csv, 1386 entries.\n", | |
| "Appended to output/by_vehicle/R397.csv, 186 entries.\n", | |
| "Created output/by_vehicle/643.csv, 598 entries.\n", | |
| "Appended to output/by_vehicle/1564.csv, 1789 entries.\n", | |
| "Appended to output/by_vehicle/1577.csv, 797 entries.\n", | |
| "Appended to output/by_vehicle/CNG552.csv, 1692 entries.\n", | |
| "Appended to output/by_vehicle/1069.csv, 2580 entries.\n", | |
| "Appended to output/by_vehicle/CNG573.csv, 76 entries.\n", | |
| "Appended to output/by_vehicle/1685.csv, 1480 entries.\n", | |
| "Appended to output/by_vehicle/655.csv, 1965 entries.\n", | |
| "Appended to output/by_vehicle/R385.csv, 342 entries.\n", | |
| "Appended to output/by_vehicle/1712.csv, 1653 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/746.csv, 239 entries.\n", | |
| "Appended to output/by_vehicle/1482.csv, 337 entries.\n", | |
| "Appended to output/by_vehicle/677.csv, 470 entries.\n", | |
| "Appended to output/by_vehicle/P182.csv, 175 entries.\n", | |
| "Appended to output/by_vehicle/R224.csv, 354 entries.\n", | |
| "Appended to output/by_vehicle/583.csv, 1478 entries.\n", | |
| "Appended to output/by_vehicle/CNG567.csv, 399 entries.\n", | |
| "Appended to output/by_vehicle/1759.csv, 1027 entries.\n", | |
| "Appended to output/by_vehicle/1692.csv, 1734 entries.\n", | |
| "Appended to output/by_vehicle/CNG252.csv, 515 entries.\n", | |
| "Appended to output/by_vehicle/1014.csv, 720 entries.\n", | |
| "Appended to output/by_vehicle/R53.csv, 108 entries.\n", | |
| "Appended to output/by_vehicle/1450.csv, 2647 entries.\n", | |
| "Appended to output/by_vehicle/CNG12.csv, 2363 entries.\n", | |
| "Appended to output/by_vehicle/R434.csv, 596 entries.\n", | |
| "Appended to output/by_vehicle/R235.csv, 213 entries.\n", | |
| "Created output/by_vehicle/701.csv, 67 entries.\n", | |
| "Appended to output/by_vehicle/CNG40.csv, 1810 entries.\n", | |
| "Created output/by_vehicle/632.csv, 614 entries.\n", | |
| "Appended to output/by_vehicle/652.csv, 2508 entries.\n", | |
| "Appended to output/by_vehicle/1446.csv, 217 entries.\n", | |
| "Appended to output/by_vehicle/732.csv, 333 entries.\n", | |
| "Appended to output/by_vehicle/CNG115.csv, 92 entries.\n", | |
| "Appended to output/by_vehicle/R231.csv, 265 entries.\n", | |
| "Appended to output/by_vehicle/1730.csv, 429 entries.\n", | |
| "Appended to output/by_vehicle/R570.csv, 403 entries.\n", | |
| "Appended to output/by_vehicle/CNG328.csv, 594 entries.\n", | |
| "Created output/by_vehicle/R09.csv, 208 entries.\n", | |
| "Appended to output/by_vehicle/1560.csv, 157 entries.\n", | |
| "Appended to output/by_vehicle/R627.csv, 861 entries.\n", | |
| "Appended to output/by_vehicle/706.csv, 175 entries.\n", | |
| "Appended to output/by_vehicle/R606.csv, 81 entries.\n", | |
| "Appended to output/by_vehicle/1725.csv, 940 entries.\n", | |
| "Appended to output/by_vehicle/937.csv, 251 entries.\n", | |
| "Appended to output/by_vehicle/CNG214.csv, 966 entries.\n", | |
| "Appended to output/by_vehicle/R634.csv, 1204 entries.\n", | |
| "Created output/by_vehicle/1682.csv, 1220 entries.\n", | |
| "Appended to output/by_vehicle/613.csv, 315 entries.\n", | |
| "Appended to output/by_vehicle/975.csv, 3928 entries.\n", | |
| "Appended to output/by_vehicle/CNG423.csv, 1135 entries.\n", | |
| "Appended to output/by_vehicle/P389.csv, 851 entries.\n", | |
| "Appended to output/by_vehicle/1011.csv, 430 entries.\n", | |
| "Appended to output/by_vehicle/P247.csv, 1179 entries.\n", | |
| "Appended to output/by_vehicle/646.csv, 149 entries.\n", | |
| "Appended to output/by_vehicle/R234.csv, 422 entries.\n", | |
| "Appended to output/by_vehicle/R321.csv, 119 entries.\n", | |
| "Appended to output/by_vehicle/R366.csv, 98 entries.\n", | |
| "Appended to output/by_vehicle/1616.csv, 1277 entries.\n", | |
| "Appended to output/by_vehicle/1677.csv, 788 entries.\n", | |
| "Appended to output/by_vehicle/R367.csv, 104 entries.\n", | |
| "Appended to output/by_vehicle/P243.csv, 3 entries.\n", | |
| "Appended to output/by_vehicle/P255.csv, 44 entries.\n", | |
| "Appended to output/by_vehicle/CNG163.csv, 533 entries.\n", | |
| "Appended to output/by_vehicle/R257.csv, 279 entries.\n", | |
| "Appended to output/by_vehicle/1555.csv, 1333 entries.\n", | |
| "Appended to output/by_vehicle/CNG83.csv, 157 entries.\n", | |
| "Appended to output/by_vehicle/745.csv, 136 entries.\n", | |
| "Appended to output/by_vehicle/P260.csv, 353 entries.\n", | |
| "Appended to output/by_vehicle/916.csv, 1862 entries.\n", | |
| "Appended to output/by_vehicle/R653.csv, 366 entries.\n", | |
| "Appended to output/by_vehicle/1594.csv, 421 entries.\n", | |
| "Appended to output/by_vehicle/R428.csv, 194 entries.\n", | |
| "Appended to output/by_vehicle/1274.csv, 1449 entries.\n", | |
| "Appended to output/by_vehicle/944.csv, 3249 entries.\n", | |
| "Appended to output/by_vehicle/1226.csv, 2238 entries.\n", | |
| "Appended to output/by_vehicle/1526.csv, 325 entries.\n", | |
| "Appended to output/by_vehicle/CNG133.csv, 1421 entries.\n", | |
| "Appended to output/by_vehicle/R371.csv, 49 entries.\n", | |
| "Appended to output/by_vehicle/CNG541.csv, 805 entries.\n", | |
| "Appended to output/by_vehicle/681.csv, 1914 entries.\n", | |
| "Appended to output/by_vehicle/728.csv, 365 entries.\n", | |
| "Created output/by_vehicle/R243.csv, 247 entries.\n", | |
| "Appended to output/by_vehicle/1001.csv, 1152 entries.\n", | |
| "Appended to output/by_vehicle/723.csv, 550 entries.\n", | |
| "Appended to output/by_vehicle/1716.csv, 256 entries.\n", | |
| "Appended to output/by_vehicle/609.csv, 666 entries.\n", | |
| "Appended to output/by_vehicle/1098.csv, 150 entries.\n", | |
| "Created output/by_vehicle/675.csv, 66 entries.\n", | |
| "Appended to output/by_vehicle/R246.csv, 330 entries.\n", | |
| "Appended to output/by_vehicle/1238.csv, 272 entries.\n", | |
| "Created output/by_vehicle/CNG347.csv, 104 entries.\n", | |
| "Appended to output/by_vehicle/942.csv, 442 entries.\n", | |
| "Appended to output/by_vehicle/1543.csv, 2895 entries.\n", | |
| "Appended to output/by_vehicle/1619.csv, 1774 entries.\n", | |
| "Appended to output/by_vehicle/1196.csv, 636 entries.\n", | |
| "Appended to output/by_vehicle/1460.csv, 699 entries.\n", | |
| "Appended to output/by_vehicle/CNG07.csv, 587 entries.\n", | |
| "Appended to output/by_vehicle/CNG39.csv, 713 entries.\n", | |
| "Appended to output/by_vehicle/900.csv, 550 entries.\n", | |
| "Appended to output/by_vehicle/1557.csv, 4089 entries.\n", | |
| "Appended to output/by_vehicle/1267.csv, 1496 entries.\n", | |
| "Appended to output/by_vehicle/CNG461.csv, 4273 entries.\n", | |
| "Appended to output/by_vehicle/1724.csv, 794 entries.\n", | |
| "Created output/by_vehicle/1773.csv, 1827 entries.\n", | |
| "Appended to output/by_vehicle/1112.csv, 1980 entries.\n", | |
| "Appended to output/by_vehicle/CNG550.csv, 1890 entries.\n", | |
| "Appended to output/by_vehicle/CNG08.csv, 2495 entries.\n", | |
| "Appended to output/by_vehicle/1241.csv, 273 entries.\n", | |
| "Appended to output/by_vehicle/CNG44.csv, 857 entries.\n", | |
| "Created output/by_vehicle/1722.csv, 3548 entries.\n", | |
| "Appended to output/by_vehicle/CNG438.csv, 513 entries.\n", | |
| "Appended to output/by_vehicle/592.csv, 241 entries.\n", | |
| "Appended to output/by_vehicle/658.csv, 1219 entries.\n", | |
| "Appended to output/by_vehicle/1757.csv, 1079 entries.\n", | |
| "Appended to output/by_vehicle/606.csv, 687 entries.\n", | |
| "Appended to output/by_vehicle/953.csv, 494 entries.\n", | |
| "Appended to output/by_vehicle/CNG376.csv, 94 entries.\n", | |
| "Appended to output/by_vehicle/1291.csv, 1393 entries.\n", | |
| "Appended to output/by_vehicle/585.csv, 123 entries.\n", | |
| "Appended to output/by_vehicle/CNG323.csv, 173 entries.\n", | |
| "Appended to output/by_vehicle/712.csv, 1191 entries.\n", | |
| "Appended to output/by_vehicle/614.csv, 1512 entries.\n", | |
| "Appended to output/by_vehicle/CNG61.csv, 74 entries.\n", | |
| "Appended to output/by_vehicle/R514.csv, 106 entries.\n", | |
| "Appended to output/by_vehicle/CNG449.csv, 2691 entries.\n", | |
| "Appended to output/by_vehicle/CNG144.csv, 2732 entries.\n", | |
| "Appended to output/by_vehicle/R577.csv, 548 entries.\n", | |
| "Appended to output/by_vehicle/R517.csv, 452 entries.\n", | |
| "Appended to output/by_vehicle/R487.csv, 62 entries.\n", | |
| "Appended to output/by_vehicle/R138.csv, 81 entries.\n", | |
| "Appended to output/by_vehicle/CNG444.csv, 98 entries.\n", | |
| "Created output/by_vehicle/R264.csv, 547 entries.\n", | |
| "Appended to output/by_vehicle/R381.csv, 30 entries.\n", | |
| "Appended to output/by_vehicle/591.csv, 69 entries.\n", | |
| "Appended to output/by_vehicle/R226.csv, 780 entries.\n", | |
| "Appended to output/by_vehicle/R398.csv, 119 entries.\n", | |
| "Appended to output/by_vehicle/R642.csv, 327 entries.\n", | |
| "Appended to output/by_vehicle/CNG452.csv, 143 entries.\n", | |
| "Appended to output/by_vehicle/1175.csv, 440 entries.\n", | |
| "Appended to output/by_vehicle/CNG443.csv, 785 entries.\n", | |
| "Appended to output/by_vehicle/P257.csv, 321 entries.\n", | |
| "Appended to output/by_vehicle/R547.csv, 16 entries.\n", | |
| "Appended to output/by_vehicle/947.csv, 191 entries.\n", | |
| "Appended to output/by_vehicle/644.csv, 371 entries.\n", | |
| "Appended to output/by_vehicle/CNG548.csv, 686 entries.\n", | |
| "Appended to output/by_vehicle/1481.csv, 2311 entries.\n", | |
| "Created output/by_vehicle/CNG578.csv, 931 entries.\n", | |
| "Appended to output/by_vehicle/R648.csv, 449 entries.\n", | |
| "Appended to output/by_vehicle/CNG124.csv, 2151 entries.\n", | |
| "Appended to output/by_vehicle/CNG147.csv, 4061 entries.\n", | |
| "Appended to output/by_vehicle/582.csv, 1516 entries.\n", | |
| "Appended to output/by_vehicle/R609.csv, 200 entries.\n", | |
| "Appended to output/by_vehicle/R182.csv, 251 entries.\n", | |
| "Appended to output/by_vehicle/CNG585.csv, 671 entries.\n", | |
| "Appended to output/by_vehicle/R320.csv, 540 entries.\n", | |
| "Appended to output/by_vehicle/R641.csv, 98 entries.\n", | |
| "Appended to output/by_vehicle/R241.csv, 461 entries.\n", | |
| "Appended to output/by_vehicle/CNG91.csv, 424 entries.\n", | |
| "Appended to output/by_vehicle/974.csv, 2 entries.\n", | |
| "Appended to output/by_vehicle/1268.csv, 88 entries.\n", | |
| "Appended to output/by_vehicle/R336.csv, 198 entries.\n", | |
| "Appended to output/by_vehicle/R490.csv, 219 entries.\n", | |
| "Created output/by_vehicle/P404.csv, 169 entries.\n", | |
| "Appended to output/by_vehicle/1201.csv, 323 entries.\n", | |
| "Appended to output/by_vehicle/557.csv, 615 entries.\n", | |
| "Appended to output/by_vehicle/CNG282.csv, 204 entries.\n" | |
| ] | |
| }, | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Appended to output/by_vehicle/R630.csv, 759 entries.\n", | |
| "Appended to output/by_vehicle/R223.csv, 57 entries.\n", | |
| "Appended to output/by_vehicle/R382.csv, 407 entries.\n", | |
| "Appended to output/by_vehicle/R426.csv, 330 entries.\n", | |
| "Appended to output/by_vehicle/R119.csv, 514 entries.\n", | |
| "Appended to output/by_vehicle/CNG487.csv, 170 entries.\n", | |
| "Appended to output/by_vehicle/CNG121.csv, 278 entries.\n", | |
| "Appended to output/by_vehicle/CNG101.csv, 914 entries.\n", | |
| "Appended to output/by_vehicle/939.csv, 1772 entries.\n", | |
| "Appended to output/by_vehicle/R512.csv, 274 entries.\n", | |
| "Appended to output/by_vehicle/CNG462.csv, 2462 entries.\n", | |
| "Appended to output/by_vehicle/R384.csv, 127 entries.\n", | |
| "Appended to output/by_vehicle/CNG551.csv, 962 entries.\n", | |
| "Appended to output/by_vehicle/938.csv, 60 entries.\n", | |
| "Appended to output/by_vehicle/CNG311.csv, 903 entries.\n", | |
| "Appended to output/by_vehicle/1586.csv, 1158 entries.\n", | |
| "Appended to output/by_vehicle/607.csv, 623 entries.\n", | |
| "Appended to output/by_vehicle/679.csv, 1454 entries.\n", | |
| "Appended to output/by_vehicle/CNG238.csv, 318 entries.\n", | |
| "Appended to output/by_vehicle/R331.csv, 30 entries.\n", | |
| "Appended to output/by_vehicle/744.csv, 205 entries.\n", | |
| "Appended to output/by_vehicle/R427.csv, 5 entries.\n", | |
| "Appended to output/by_vehicle/P167.csv, 82 entries.\n", | |
| "Created output/by_vehicle/R363.csv, 165 entries.\n", | |
| "Appended to output/by_vehicle/735.csv, 1178 entries.\n", | |
| "Appended to output/by_vehicle/P267.csv, 780 entries.\n", | |
| "Appended to output/by_vehicle/602.csv, 113 entries.\n", | |
| "Created output/by_vehicle/1123.csv, 2096 entries.\n", | |
| "Appended to output/by_vehicle/755.csv, 191 entries.\n", | |
| "Appended to output/by_vehicle/CNG103.csv, 1581 entries.\n", | |
| "Appended to output/by_vehicle/619.csv, 260 entries.\n", | |
| "Appended to output/by_vehicle/621.csv, 296 entries.\n", | |
| "Appended to output/by_vehicle/1125.csv, 863 entries.\n", | |
| "Appended to output/by_vehicle/650.csv, 71 entries.\n", | |
| "Created output/by_vehicle/1719.csv, 469 entries.\n", | |
| "Appended to output/by_vehicle/601.csv, 1537 entries.\n", | |
| "Appended to output/by_vehicle/CNG530.csv, 1016 entries.\n", | |
| "Appended to output/by_vehicle/CNG217.csv, 73 entries.\n", | |
| "Appended to output/by_vehicle/CNG549.csv, 877 entries.\n", | |
| "Appended to output/by_vehicle/R484.csv, 9 entries.\n", | |
| "Appended to output/by_vehicle/CNG432.csv, 266 entries.\n", | |
| "Appended to output/by_vehicle/CNG130.csv, 154 entries.\n", | |
| "Created output/by_vehicle/1111.csv, 901 entries.\n", | |
| "Appended to output/by_vehicle/467.csv, 78 entries.\n", | |
| "Created output/by_vehicle/645.csv, 30 entries.\n", | |
| "Appended to output/by_vehicle/R402.csv, 78 entries.\n", | |
| "Appended to output/by_vehicle/R332.csv, 34 entries.\n", | |
| "Appended to output/by_vehicle/973.csv, 125 entries.\n", | |
| "Created output/by_vehicle/R396.csv, 98 entries.\n", | |
| "Created output/by_vehicle/CNG165.csv, 157 entries.\n", | |
| "Appended to output/by_vehicle/R590.csv, 60 entries.\n", | |
| "Appended to output/by_vehicle/1020.csv, 176 entries.\n", | |
| "Appended to output/by_vehicle/727.csv, 201 entries.\n", | |
| "Created output/by_vehicle/R601.csv, 406 entries.\n", | |
| "Appended to output/by_vehicle/703.csv, 85 entries.\n", | |
| "Appended to output/by_vehicle/R388.csv, 263 entries.\n", | |
| "Created output/by_vehicle/656.csv, 85 entries.\n", | |
| "Appended to output/by_vehicle/699.csv, 168 entries.\n", | |
| "Created output/by_vehicle/R270.csv, 265 entries.\n", | |
| "Created output/by_vehicle/R301.csv, 181 entries.\n", | |
| "Appended to output/by_vehicle/R414.csv, 37 entries.\n", | |
| "Appended to output/by_vehicle/CNG114.csv, 24 entries.\n", | |
| "Appended to output/by_vehicle/626.csv, 692 entries.\n", | |
| "Created output/by_vehicle/615.csv, 60 entries.\n", | |
| "Appended to output/by_vehicle/CNG345.csv, 63 entries.\n", | |
| "Created output/by_vehicle/R589.csv, 72 entries.\n", | |
| "Created output/by_vehicle/1168.csv, 1535 entries.\n", | |
| "Appended to output/by_vehicle/588.csv, 845 entries.\n", | |
| "Appended to output/by_vehicle/1792.csv, 981 entries.\n", | |
| "Appended to output/by_vehicle/CNG111.csv, 917 entries.\n", | |
| "Created output/by_vehicle/R616.csv, 289 entries.\n", | |
| "Appended to output/by_vehicle/R471.csv, 557 entries.\n", | |
| "Appended to output/by_vehicle/CNG500.csv, 277 entries.\n", | |
| "Appended to output/by_vehicle/CNG568.csv, 11 entries.\n", | |
| "Appended to output/by_vehicle/CNG135.csv, 1059 entries.\n", | |
| "Appended to output/by_vehicle/R613.csv, 226 entries.\n", | |
| "Appended to output/by_vehicle/R237.csv, 92 entries.\n", | |
| "Appended to output/by_vehicle/690.csv, 227 entries.\n", | |
| "Appended to output/by_vehicle/CNG385.csv, 37 entries.\n", | |
| "Appended to output/by_vehicle/754.csv, 102 entries.\n", | |
| "Appended to output/by_vehicle/618.csv, 81 entries.\n", | |
| "Created output/by_vehicle/R168.csv, 32 entries.\n", | |
| "Appended to output/by_vehicle/729.csv, 13 entries.\n", | |
| "Appended to output/by_vehicle/CNG350.csv, 536 entries.\n", | |
| "Appended to output/by_vehicle/589.csv, 43 entries.\n", | |
| "Appended to output/by_vehicle/CNG413.csv, 99 entries.\n", | |
| "Appended to output/by_vehicle/CNG583.csv, 483 entries.\n", | |
| "Appended to output/by_vehicle/P198.csv, 193 entries.\n", | |
| "Appended to output/by_vehicle/668.csv, 103 entries.\n", | |
| "Appended to output/by_vehicle/1475.csv, 126 entries.\n", | |
| "Appended to output/by_vehicle/568.csv, 231 entries.\n", | |
| "Appended to output/by_vehicle/R372.csv, 167 entries.\n", | |
| "Appended to output/by_vehicle/P262.csv, 20 entries.\n", | |
| "Appended to output/by_vehicle/1671.csv, 446 entries.\n", | |
| "Appended to output/by_vehicle/CNG139.csv, 401 entries.\n", | |
| "Appended to output/by_vehicle/CNG380.csv, 42 entries.\n", | |
| "Appended to output/by_vehicle/635.csv, 50 entries.\n", | |
| "Appended to output/by_vehicle/1740.csv, 238 entries.\n", | |
| "Appended to output/by_vehicle/P195.csv, 44 entries.\n", | |
| "Appended to output/by_vehicle/571.csv, 282 entries.\n", | |
| "Created output/by_vehicle/687.csv, 105 entries.\n", | |
| "Created output/by_vehicle/R279.csv, 51 entries.\n", | |
| "Appended to output/by_vehicle/CNG566.csv, 54 entries.\n", | |
| "Appended to output/by_vehicle/P265.csv, 180 entries.\n", | |
| "Appended to output/by_vehicle/641.csv, 101 entries.\n", | |
| "Appended to output/by_vehicle/CNG29.csv, 19 entries.\n", | |
| "Appended to output/by_vehicle/1236.csv, 7 entries.\n", | |
| "Appended to output/by_vehicle/R06.csv, 40 entries.\n", | |
| "Appended to output/by_vehicle/1787.csv, 78 entries.\n", | |
| "Created output/by_vehicle/nan.csv, 0 entries.\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "for chunk in df:\n", | |
| " routes = chunk['route_id'].unique().tolist()\n", | |
| " print('Routes:',routes)\n", | |
| " \n", | |
| " for route_id in routes:\n", | |
| " filterDF = chunk[chunk['route_id']==route_id].copy()\n", | |
| " \n", | |
| " targetFolder = os.path.join(outputFolder,'by_route')\n", | |
| " if not os.path.exists(targetFolder): os.makedirs(targetFolder)\n", | |
| " targetFile = os.path.join(targetFolder, '{}.csv'.format(route_id))\n", | |
| " \n", | |
| " writeOrAppend(filterDF, targetFile)\n", | |
| " del filterDF # just clearing up memory\n", | |
| " \n", | |
| " vehicles = chunk['vehicle_id'].unique().tolist()\n", | |
| " print('Vehicles:',vehicles)\n", | |
| " for vehicle_id in vehicles:\n", | |
| " filterDF = chunk[chunk['vehicle_id']==vehicle_id].copy()\n", | |
| " \n", | |
| " targetFolder = os.path.join(outputFolder,'by_vehicle')\n", | |
| " if not os.path.exists(targetFolder): os.makedirs(targetFolder)\n", | |
| " targetFile = os.path.join(targetFolder, '{}.csv'.format(vehicle_id))\n", | |
| " \n", | |
| " writeOrAppend(filterDF, targetFile)\n", | |
| " del filterDF # just clearing up memory\n", | |
| " \n", | |
| " " | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 7, | |
| "metadata": { | |
| "scrolled": true | |
| }, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "'####################################################################################################'" | |
| ] | |
| }, | |
| "execution_count": 7, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "'#'*100" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "### 737 unique vehicle_id's, 246 unique route_id's\n", | |
| "Duration : 2019-01-19 16:00 to 2019-01-27 18:00 IST" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": null, | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [] | |
| } | |
| ], | |
| "metadata": { | |
| "kernelspec": { | |
| "display_name": "Python 3", | |
| "language": "python", | |
| "name": "python3" | |
| }, | |
| "language_info": { | |
| "codemirror_mode": { | |
| "name": "ipython", | |
| "version": 3 | |
| }, | |
| "file_extension": ".py", | |
| "mimetype": "text/x-python", | |
| "name": "python", | |
| "nbconvert_exporter": "python", | |
| "pygments_lexer": "ipython3", | |
| "version": "3.6.5" | |
| } | |
| }, | |
| "nbformat": 4, | |
| "nbformat_minor": 2 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment