| <!DOCTYPE html> |
| <meta charset="utf-8"> |
| <html> |
| <head> |
| <link href="../src/nv.d3.css" rel="stylesheet" type="text/css"> |
| <style> |
| |
| body { |
| overflow-y: scroll; |
| } |
| |
| .chart { |
| padding: 0; |
| } |
| |
| svg { |
| position: relative; |
| overflow: hidden; |
| width: 960px; |
| height: 500px; |
| font: 10px sans-serif; |
| } |
| |
| </style> |
| </head> |
| <body> |
| |
| <div id="chart1" class="chart"> |
| <svg></svg> |
| </div> |
| |
| <script type="text/javascript" src="../lib/d3.v3.js"></script> |
| <script type="text/javascript" src="../nv.d3.js"></script> |
| <script type="text/javascript" src="../src/utils.js"></script> |
| <script type="text/javascript" src="../src/models/parallelCoordinates.js"></script> |
| |
| <script> |
| var chart; |
| nv.addGraph(function() { |
| |
| chart = nv.models.parallelCoordinates() |
| .dimensions(["economy (mpg)", "cylinders", "displacement (cc)", "power (hp)", "weight (lb)", "0-60 mph (s)", "year"]); |
| |
| d3.select('#chart1 svg') |
| .datum(data) |
| .call(chart); |
| |
| // chart.dispatch.on('brush', function(e) { |
| // nv.log(e); |
| // }); |
| |
| nv.utils.windowResize(chart.update); |
| |
| return chart; |
| |
| }); |
| |
| function data() { |
| return [ |
| { |
| "name": "AMC Ambassador Brougham", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "360", |
| "power (hp)": "175", |
| "weight (lb)": "3821", |
| "0-60 mph (s)": "11", |
| "year": "73" |
| }, |
| { |
| "name": "AMC Ambassador DPL", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "390", |
| "power (hp)": "190", |
| "weight (lb)": "3850", |
| "0-60 mph (s)": "8.5", |
| "year": "70" |
| }, |
| { |
| "name": "AMC Ambassador SST", |
| "economy (mpg)": "17", |
| "cylinders": "8", |
| "displacement (cc)": "304", |
| "power (hp)": "150", |
| "weight (lb)": "3672", |
| "0-60 mph (s)": "11.5", |
| "year": "72" |
| }, |
| { |
| "name": "AMC Concord DL 6", |
| "economy (mpg)": "20.2", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "90", |
| "weight (lb)": "3265", |
| "0-60 mph (s)": "18.2", |
| "year": "79" |
| }, |
| { |
| "name": "AMC Concord DL", |
| "economy (mpg)": "18.1", |
| "cylinders": "6", |
| "displacement (cc)": "258", |
| "power (hp)": "120", |
| "weight (lb)": "3410", |
| "0-60 mph (s)": "15.1", |
| "year": "78" |
| }, |
| { |
| "name": "AMC Concord DL", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "", |
| "weight (lb)": "3035", |
| "0-60 mph (s)": "20.5", |
| "year": "82" |
| }, |
| { |
| "name": "AMC Concord", |
| "economy (mpg)": "19.4", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "90", |
| "weight (lb)": "3210", |
| "0-60 mph (s)": "17.2", |
| "year": "78" |
| }, |
| { |
| "name": "AMC Concord", |
| "economy (mpg)": "24.3", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "90", |
| "weight (lb)": "3003", |
| "0-60 mph (s)": "20.1", |
| "year": "80" |
| }, |
| { |
| "name": "AMC Gremlin", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "100", |
| "weight (lb)": "2789", |
| "0-60 mph (s)": "15", |
| "year": "73" |
| }, |
| { |
| "name": "AMC Gremlin", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "100", |
| "weight (lb)": "2634", |
| "0-60 mph (s)": "13", |
| "year": "71" |
| }, |
| { |
| "name": "AMC Gremlin", |
| "economy (mpg)": "20", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "100", |
| "weight (lb)": "2914", |
| "0-60 mph (s)": "16", |
| "year": "75" |
| }, |
| { |
| "name": "AMC Gremlin", |
| "economy (mpg)": "21", |
| "cylinders": "6", |
| "displacement (cc)": "199", |
| "power (hp)": "90", |
| "weight (lb)": "2648", |
| "0-60 mph (s)": "15", |
| "year": "70" |
| }, |
| { |
| "name": "AMC Hornet Sportabout (Wagon)", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "258", |
| "power (hp)": "110", |
| "weight (lb)": "2962", |
| "0-60 mph (s)": "13.5", |
| "year": "71" |
| }, |
| { |
| "name": "AMC Hornet", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "199", |
| "power (hp)": "97", |
| "weight (lb)": "2774", |
| "0-60 mph (s)": "15.5", |
| "year": "70" |
| }, |
| { |
| "name": "AMC Hornet", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "100", |
| "weight (lb)": "2945", |
| "0-60 mph (s)": "16", |
| "year": "73" |
| }, |
| { |
| "name": "AMC Hornet", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "100", |
| "weight (lb)": "2901", |
| "0-60 mph (s)": "16", |
| "year": "74" |
| }, |
| { |
| "name": "AMC Hornet", |
| "economy (mpg)": "22.5", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "90", |
| "weight (lb)": "3085", |
| "0-60 mph (s)": "17.6", |
| "year": "76" |
| }, |
| { |
| "name": "AMC Matador (Wagon)", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "304", |
| "power (hp)": "150", |
| "weight (lb)": "4257", |
| "0-60 mph (s)": "15.5", |
| "year": "74" |
| }, |
| { |
| "name": "AMC Matador (Wagon)", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "304", |
| "power (hp)": "150", |
| "weight (lb)": "3892", |
| "0-60 mph (s)": "12.5", |
| "year": "72" |
| }, |
| { |
| "name": "AMC Matador", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "304", |
| "power (hp)": "150", |
| "weight (lb)": "3672", |
| "0-60 mph (s)": "11.5", |
| "year": "73" |
| }, |
| { |
| "name": "AMC Matador", |
| "economy (mpg)": "15", |
| "cylinders": "6", |
| "displacement (cc)": "258", |
| "power (hp)": "110", |
| "weight (lb)": "3730", |
| "0-60 mph (s)": "19", |
| "year": "75" |
| }, |
| { |
| "name": "AMC Matador", |
| "economy (mpg)": "15.5", |
| "cylinders": "8", |
| "displacement (cc)": "304", |
| "power (hp)": "120", |
| "weight (lb)": "3962", |
| "0-60 mph (s)": "13.9", |
| "year": "76" |
| }, |
| { |
| "name": "AMC Matador", |
| "economy (mpg)": "16", |
| "cylinders": "6", |
| "displacement (cc)": "258", |
| "power (hp)": "110", |
| "weight (lb)": "3632", |
| "0-60 mph (s)": "18", |
| "year": "74" |
| }, |
| { |
| "name": "AMC Matador", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "100", |
| "weight (lb)": "3288", |
| "0-60 mph (s)": "15.5", |
| "year": "71" |
| }, |
| { |
| "name": "AMC Pacer D/L", |
| "economy (mpg)": "17.5", |
| "cylinders": "6", |
| "displacement (cc)": "258", |
| "power (hp)": "95", |
| "weight (lb)": "3193", |
| "0-60 mph (s)": "17.8", |
| "year": "76" |
| }, |
| { |
| "name": "AMC Pacer", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "90", |
| "weight (lb)": "3211", |
| "0-60 mph (s)": "17", |
| "year": "75" |
| }, |
| { |
| "name": "AMC Rebel SST (Wagon)", |
| "economy (mpg)": "", |
| "cylinders": "8", |
| "displacement (cc)": "360", |
| "power (hp)": "175", |
| "weight (lb)": "3850", |
| "0-60 mph (s)": "11", |
| "year": "70" |
| }, |
| { |
| "name": "AMC Rebel SST", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "304", |
| "power (hp)": "150", |
| "weight (lb)": "3433", |
| "0-60 mph (s)": "12", |
| "year": "70" |
| }, |
| { |
| "name": "AMC Spirit DL", |
| "economy (mpg)": "27.4", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "80", |
| "weight (lb)": "2670", |
| "0-60 mph (s)": "15", |
| "year": "79" |
| }, |
| { |
| "name": "Audi 100 LS", |
| "economy (mpg)": "20", |
| "cylinders": "4", |
| "displacement (cc)": "114", |
| "power (hp)": "91", |
| "weight (lb)": "2582", |
| "0-60 mph (s)": "14", |
| "year": "73" |
| }, |
| { |
| "name": "Audi 100 LS", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "115", |
| "power (hp)": "95", |
| "weight (lb)": "2694", |
| "0-60 mph (s)": "15", |
| "year": "75" |
| }, |
| { |
| "name": "Audi 100 LS", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "107", |
| "power (hp)": "90", |
| "weight (lb)": "2430", |
| "0-60 mph (s)": "14.5", |
| "year": "70" |
| }, |
| { |
| "name": "Audi 4000", |
| "economy (mpg)": "34.3", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "78", |
| "weight (lb)": "2188", |
| "0-60 mph (s)": "15.8", |
| "year": "80" |
| }, |
| { |
| "name": "Audi 5000", |
| "economy (mpg)": "20.3", |
| "cylinders": "5", |
| "displacement (cc)": "131", |
| "power (hp)": "103", |
| "weight (lb)": "2830", |
| "0-60 mph (s)": "15.9", |
| "year": "78" |
| }, |
| { |
| "name": "Audi 5000S (Diesel)", |
| "economy (mpg)": "36.4", |
| "cylinders": "5", |
| "displacement (cc)": "121", |
| "power (hp)": "67", |
| "weight (lb)": "2950", |
| "0-60 mph (s)": "19.9", |
| "year": "80" |
| }, |
| { |
| "name": "Audi Fox", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "83", |
| "weight (lb)": "2219", |
| "0-60 mph (s)": "16.5", |
| "year": "74" |
| }, |
| { |
| "name": "BMW 2002", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "113", |
| "weight (lb)": "2234", |
| "0-60 mph (s)": "12.5", |
| "year": "70" |
| }, |
| { |
| "name": "BMW 320i", |
| "economy (mpg)": "21.5", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "110", |
| "weight (lb)": "2600", |
| "0-60 mph (s)": "12.8", |
| "year": "77" |
| }, |
| { |
| "name": "Buick Century 350", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "175", |
| "weight (lb)": "4100", |
| "0-60 mph (s)": "13", |
| "year": "73" |
| }, |
| { |
| "name": "Buick Century Limited", |
| "economy (mpg)": "25", |
| "cylinders": "6", |
| "displacement (cc)": "181", |
| "power (hp)": "110", |
| "weight (lb)": "2945", |
| "0-60 mph (s)": "16.4", |
| "year": "82" |
| }, |
| { |
| "name": "Buick Century Luxus (Wagon)", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "150", |
| "weight (lb)": "4699", |
| "0-60 mph (s)": "14.5", |
| "year": "74" |
| }, |
| { |
| "name": "Buick Century Special", |
| "economy (mpg)": "20.6", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "105", |
| "weight (lb)": "3380", |
| "0-60 mph (s)": "15.8", |
| "year": "78" |
| }, |
| { |
| "name": "Buick Century", |
| "economy (mpg)": "17", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "110", |
| "weight (lb)": "3907", |
| "0-60 mph (s)": "21", |
| "year": "75" |
| }, |
| { |
| "name": "Buick Century", |
| "economy (mpg)": "22.4", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "110", |
| "weight (lb)": "3415", |
| "0-60 mph (s)": "15.8", |
| "year": "81" |
| }, |
| { |
| "name": "Buick Electra 225 Custom", |
| "economy (mpg)": "12", |
| "cylinders": "8", |
| "displacement (cc)": "455", |
| "power (hp)": "225", |
| "weight (lb)": "4951", |
| "0-60 mph (s)": "11", |
| "year": "73" |
| }, |
| { |
| "name": "Buick Estate Wagon (Wagon)", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "455", |
| "power (hp)": "225", |
| "weight (lb)": "3086", |
| "0-60 mph (s)": "10", |
| "year": "70" |
| }, |
| { |
| "name": "Buick Estate Wagon (Wagon)", |
| "economy (mpg)": "16.9", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "155", |
| "weight (lb)": "4360", |
| "0-60 mph (s)": "14.9", |
| "year": "79" |
| }, |
| { |
| "name": "Buick Lesabre Custom", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "155", |
| "weight (lb)": "4502", |
| "0-60 mph (s)": "13.5", |
| "year": "72" |
| }, |
| { |
| "name": "Buick Opel Isuzu Deluxe", |
| "economy (mpg)": "30", |
| "cylinders": "4", |
| "displacement (cc)": "111", |
| "power (hp)": "80", |
| "weight (lb)": "2155", |
| "0-60 mph (s)": "14.8", |
| "year": "77" |
| }, |
| { |
| "name": "Buick Regal Sport Coupe (Turbo)", |
| "economy (mpg)": "17.7", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "165", |
| "weight (lb)": "3445", |
| "0-60 mph (s)": "13.4", |
| "year": "78" |
| }, |
| { |
| "name": "Buick Skyhawk", |
| "economy (mpg)": "21", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "110", |
| "weight (lb)": "3039", |
| "0-60 mph (s)": "15", |
| "year": "75" |
| }, |
| { |
| "name": "Buick Skylark 320", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "165", |
| "weight (lb)": "3693", |
| "0-60 mph (s)": "11.5", |
| "year": "70" |
| }, |
| { |
| "name": "Buick Skylark Limited", |
| "economy (mpg)": "28.4", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "90", |
| "weight (lb)": "2670", |
| "0-60 mph (s)": "16", |
| "year": "79" |
| }, |
| { |
| "name": "Buick Skylark", |
| "economy (mpg)": "20.5", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "105", |
| "weight (lb)": "3425", |
| "0-60 mph (s)": "16.9", |
| "year": "77" |
| }, |
| { |
| "name": "Buick Skylark", |
| "economy (mpg)": "26.6", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "84", |
| "weight (lb)": "2635", |
| "0-60 mph (s)": "16.4", |
| "year": "81" |
| }, |
| { |
| "name": "Cadillac Eldorado", |
| "economy (mpg)": "23", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "125", |
| "weight (lb)": "3900", |
| "0-60 mph (s)": "17.4", |
| "year": "79" |
| }, |
| { |
| "name": "Cadillac Seville", |
| "economy (mpg)": "16.5", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "180", |
| "weight (lb)": "4380", |
| "0-60 mph (s)": "12.1", |
| "year": "76" |
| }, |
| { |
| "name": "Chevroelt Chevelle Malibu", |
| "economy (mpg)": "16", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "105", |
| "weight (lb)": "3897", |
| "0-60 mph (s)": "18.5", |
| "year": "75" |
| }, |
| { |
| "name": "Chevrolet Bel Air", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "145", |
| "weight (lb)": "4440", |
| "0-60 mph (s)": "14", |
| "year": "75" |
| }, |
| { |
| "name": "Chevrolet Camaro", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "90", |
| "weight (lb)": "2950", |
| "0-60 mph (s)": "17.3", |
| "year": "82" |
| }, |
| { |
| "name": "Chevrolet Caprice Classic", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "150", |
| "weight (lb)": "4464", |
| "0-60 mph (s)": "12", |
| "year": "73" |
| }, |
| { |
| "name": "Chevrolet Caprice Classic", |
| "economy (mpg)": "17", |
| "cylinders": "8", |
| "displacement (cc)": "305", |
| "power (hp)": "130", |
| "weight (lb)": "3840", |
| "0-60 mph (s)": "15.4", |
| "year": "79" |
| }, |
| { |
| "name": "Chevrolet Caprice Classic", |
| "economy (mpg)": "17.5", |
| "cylinders": "8", |
| "displacement (cc)": "305", |
| "power (hp)": "145", |
| "weight (lb)": "3880", |
| "0-60 mph (s)": "12.5", |
| "year": "77" |
| }, |
| { |
| "name": "Chevrolet Cavalier 2-Door", |
| "economy (mpg)": "34", |
| "cylinders": "4", |
| "displacement (cc)": "112", |
| "power (hp)": "88", |
| "weight (lb)": "2395", |
| "0-60 mph (s)": "18", |
| "year": "82" |
| }, |
| { |
| "name": "Chevrolet Cavalier Wagon", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "112", |
| "power (hp)": "88", |
| "weight (lb)": "2640", |
| "0-60 mph (s)": "18.6", |
| "year": "82" |
| }, |
| { |
| "name": "Chevrolet Cavalier", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "112", |
| "power (hp)": "88", |
| "weight (lb)": "2605", |
| "0-60 mph (s)": "19.6", |
| "year": "82" |
| }, |
| { |
| "name": "Chevrolet Chevelle Concours (Wagon)", |
| "economy (mpg)": "", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "165", |
| "weight (lb)": "4142", |
| "0-60 mph (s)": "11.5", |
| "year": "70" |
| }, |
| { |
| "name": "Chevrolet Chevelle Concours (Wagon)", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "307", |
| "power (hp)": "130", |
| "weight (lb)": "4098", |
| "0-60 mph (s)": "14", |
| "year": "72" |
| }, |
| { |
| "name": "Chevrolet Chevelle Malibu Classic", |
| "economy (mpg)": "16", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "100", |
| "weight (lb)": "3781", |
| "0-60 mph (s)": "17", |
| "year": "74" |
| }, |
| { |
| "name": "Chevrolet Chevelle Malibu Classic", |
| "economy (mpg)": "17.5", |
| "cylinders": "8", |
| "displacement (cc)": "305", |
| "power (hp)": "140", |
| "weight (lb)": "4215", |
| "0-60 mph (s)": "13", |
| "year": "76" |
| }, |
| { |
| "name": "Chevrolet Chevelle Malibu", |
| "economy (mpg)": "17", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "100", |
| "weight (lb)": "3329", |
| "0-60 mph (s)": "15.5", |
| "year": "71" |
| }, |
| { |
| "name": "Chevrolet Chevelle Malibu", |
| "economy (mpg)": "18", |
| "cylinders": "8", |
| "displacement (cc)": "307", |
| "power (hp)": "130", |
| "weight (lb)": "3504", |
| "0-60 mph (s)": "12", |
| "year": "70" |
| }, |
| { |
| "name": "Chevrolet Chevette", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "52", |
| "weight (lb)": "2035", |
| "0-60 mph (s)": "22.2", |
| "year": "76" |
| }, |
| { |
| "name": "Chevrolet Chevette", |
| "economy (mpg)": "30", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "68", |
| "weight (lb)": "2155", |
| "0-60 mph (s)": "16.5", |
| "year": "78" |
| }, |
| { |
| "name": "Chevrolet Chevette", |
| "economy (mpg)": "30.5", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "63", |
| "weight (lb)": "2051", |
| "0-60 mph (s)": "17", |
| "year": "77" |
| }, |
| { |
| "name": "Chevrolet Chevette", |
| "economy (mpg)": "32.1", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "70", |
| "weight (lb)": "2120", |
| "0-60 mph (s)": "15.5", |
| "year": "80" |
| }, |
| { |
| "name": "Chevrolet Citation", |
| "economy (mpg)": "23.5", |
| "cylinders": "6", |
| "displacement (cc)": "173", |
| "power (hp)": "110", |
| "weight (lb)": "2725", |
| "0-60 mph (s)": "12.6", |
| "year": "81" |
| }, |
| { |
| "name": "Chevrolet Citation", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "90", |
| "weight (lb)": "2678", |
| "0-60 mph (s)": "16.5", |
| "year": "80" |
| }, |
| { |
| "name": "Chevrolet Citation", |
| "economy (mpg)": "28.8", |
| "cylinders": "6", |
| "displacement (cc)": "173", |
| "power (hp)": "115", |
| "weight (lb)": "2595", |
| "0-60 mph (s)": "11.3", |
| "year": "79" |
| }, |
| { |
| "name": "Chevrolet Concours", |
| "economy (mpg)": "17.5", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "110", |
| "weight (lb)": "3520", |
| "0-60 mph (s)": "16.4", |
| "year": "77" |
| }, |
| { |
| "name": "Chevrolet Impala", |
| "economy (mpg)": "11", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "150", |
| "weight (lb)": "4997", |
| "0-60 mph (s)": "14", |
| "year": "73" |
| }, |
| { |
| "name": "Chevrolet Impala", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "165", |
| "weight (lb)": "4274", |
| "0-60 mph (s)": "12", |
| "year": "72" |
| }, |
| { |
| "name": "Chevrolet Impala", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "165", |
| "weight (lb)": "4209", |
| "0-60 mph (s)": "12", |
| "year": "71" |
| }, |
| { |
| "name": "Chevrolet Impala", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "454", |
| "power (hp)": "220", |
| "weight (lb)": "4354", |
| "0-60 mph (s)": "9", |
| "year": "70" |
| }, |
| { |
| "name": "Chevrolet Malibu Classic (Wagon)", |
| "economy (mpg)": "19.2", |
| "cylinders": "8", |
| "displacement (cc)": "267", |
| "power (hp)": "125", |
| "weight (lb)": "3605", |
| "0-60 mph (s)": "15", |
| "year": "79" |
| }, |
| { |
| "name": "Chevrolet Malibu", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "145", |
| "weight (lb)": "3988", |
| "0-60 mph (s)": "13", |
| "year": "73" |
| }, |
| { |
| "name": "Chevrolet Malibu", |
| "economy (mpg)": "20.5", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "95", |
| "weight (lb)": "3155", |
| "0-60 mph (s)": "18.2", |
| "year": "78" |
| }, |
| { |
| "name": "Chevrolet Monte Carlo Landau", |
| "economy (mpg)": "15.5", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "170", |
| "weight (lb)": "4165", |
| "0-60 mph (s)": "11.4", |
| "year": "77" |
| }, |
| { |
| "name": "Chevrolet Monte Carlo Landau", |
| "economy (mpg)": "19.2", |
| "cylinders": "8", |
| "displacement (cc)": "305", |
| "power (hp)": "145", |
| "weight (lb)": "3425", |
| "0-60 mph (s)": "13.2", |
| "year": "78" |
| }, |
| { |
| "name": "Chevrolet Monte Carlo S", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "145", |
| "weight (lb)": "4082", |
| "0-60 mph (s)": "13", |
| "year": "73" |
| }, |
| { |
| "name": "Chevrolet Monte Carlo", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "150", |
| "weight (lb)": "3761", |
| "0-60 mph (s)": "9.5", |
| "year": "70" |
| }, |
| { |
| "name": "Chevrolet Monza 2+2", |
| "economy (mpg)": "20", |
| "cylinders": "8", |
| "displacement (cc)": "262", |
| "power (hp)": "110", |
| "weight (lb)": "3221", |
| "0-60 mph (s)": "13.5", |
| "year": "75" |
| }, |
| { |
| "name": "Chevrolet Nova Custom", |
| "economy (mpg)": "16", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "100", |
| "weight (lb)": "3278", |
| "0-60 mph (s)": "18", |
| "year": "73" |
| }, |
| { |
| "name": "Chevrolet Nova", |
| "economy (mpg)": "15", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "100", |
| "weight (lb)": "3336", |
| "0-60 mph (s)": "17", |
| "year": "74" |
| }, |
| { |
| "name": "Chevrolet Nova", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "105", |
| "weight (lb)": "3459", |
| "0-60 mph (s)": "16", |
| "year": "75" |
| }, |
| { |
| "name": "Chevrolet Nova", |
| "economy (mpg)": "22", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "105", |
| "weight (lb)": "3353", |
| "0-60 mph (s)": "14.5", |
| "year": "76" |
| }, |
| { |
| "name": "Chevrolet Vega (Wagon)", |
| "economy (mpg)": "22", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "72", |
| "weight (lb)": "2408", |
| "0-60 mph (s)": "19", |
| "year": "71" |
| }, |
| { |
| "name": "Chevrolet Vega 2300", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "90", |
| "weight (lb)": "2264", |
| "0-60 mph (s)": "15.5", |
| "year": "71" |
| }, |
| { |
| "name": "Chevrolet Vega", |
| "economy (mpg)": "20", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "90", |
| "weight (lb)": "2408", |
| "0-60 mph (s)": "19.5", |
| "year": "72" |
| }, |
| { |
| "name": "Chevrolet Vega", |
| "economy (mpg)": "21", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "72", |
| "weight (lb)": "2401", |
| "0-60 mph (s)": "19.5", |
| "year": "73" |
| }, |
| { |
| "name": "Chevrolet Vega", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "75", |
| "weight (lb)": "2542", |
| "0-60 mph (s)": "17", |
| "year": "74" |
| }, |
| { |
| "name": "Chevrolet Woody", |
| "economy (mpg)": "24.5", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "60", |
| "weight (lb)": "2164", |
| "0-60 mph (s)": "22.1", |
| "year": "76" |
| }, |
| { |
| "name": "Chevy C10", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "145", |
| "weight (lb)": "4055", |
| "0-60 mph (s)": "12", |
| "year": "76" |
| }, |
| { |
| "name": "Chevy C20", |
| "economy (mpg)": "10", |
| "cylinders": "8", |
| "displacement (cc)": "307", |
| "power (hp)": "200", |
| "weight (lb)": "4376", |
| "0-60 mph (s)": "15", |
| "year": "70" |
| }, |
| { |
| "name": "Chevy S-10", |
| "economy (mpg)": "31", |
| "cylinders": "4", |
| "displacement (cc)": "119", |
| "power (hp)": "82", |
| "weight (lb)": "2720", |
| "0-60 mph (s)": "19.4", |
| "year": "82" |
| }, |
| { |
| "name": "Chrysler Cordoba", |
| "economy (mpg)": "15.5", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "190", |
| "weight (lb)": "4325", |
| "0-60 mph (s)": "12.2", |
| "year": "77" |
| }, |
| { |
| "name": "Chrysler Lebaron Medallion", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "156", |
| "power (hp)": "92", |
| "weight (lb)": "2585", |
| "0-60 mph (s)": "14.5", |
| "year": "82" |
| }, |
| { |
| "name": "Chrysler Lebaron Salon", |
| "economy (mpg)": "17.6", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "85", |
| "weight (lb)": "3465", |
| "0-60 mph (s)": "16.6", |
| "year": "81" |
| }, |
| { |
| "name": "Chrysler Lebaron Town & Country (Wagon)", |
| "economy (mpg)": "18.5", |
| "cylinders": "8", |
| "displacement (cc)": "360", |
| "power (hp)": "150", |
| "weight (lb)": "3940", |
| "0-60 mph (s)": "13", |
| "year": "79" |
| }, |
| { |
| "name": "Chrysler New Yorker Brougham", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "440", |
| "power (hp)": "215", |
| "weight (lb)": "4735", |
| "0-60 mph (s)": "11", |
| "year": "73" |
| }, |
| { |
| "name": "Chrysler Newport Royal", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "190", |
| "weight (lb)": "4422", |
| "0-60 mph (s)": "12.5", |
| "year": "72" |
| }, |
| { |
| "name": "Citroen DS-21 Pallas", |
| "economy (mpg)": "", |
| "cylinders": "4", |
| "displacement (cc)": "133", |
| "power (hp)": "115", |
| "weight (lb)": "3090", |
| "0-60 mph (s)": "17.5", |
| "year": "70" |
| }, |
| { |
| "name": "Datsun 1200", |
| "economy (mpg)": "35", |
| "cylinders": "4", |
| "displacement (cc)": "72", |
| "power (hp)": "69", |
| "weight (lb)": "1613", |
| "0-60 mph (s)": "18", |
| "year": "71" |
| }, |
| { |
| "name": "Datsun 200SX", |
| "economy (mpg)": "23.9", |
| "cylinders": "4", |
| "displacement (cc)": "119", |
| "power (hp)": "97", |
| "weight (lb)": "2405", |
| "0-60 mph (s)": "14.9", |
| "year": "78" |
| }, |
| { |
| "name": "Datsun 200SX", |
| "economy (mpg)": "32.9", |
| "cylinders": "4", |
| "displacement (cc)": "119", |
| "power (hp)": "100", |
| "weight (lb)": "2615", |
| "0-60 mph (s)": "14.8", |
| "year": "81" |
| }, |
| { |
| "name": "Datsun 210", |
| "economy (mpg)": "31.8", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "65", |
| "weight (lb)": "2020", |
| "0-60 mph (s)": "19.2", |
| "year": "79" |
| }, |
| { |
| "name": "Datsun 210", |
| "economy (mpg)": "37", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "65", |
| "weight (lb)": "1975", |
| "0-60 mph (s)": "19.4", |
| "year": "81" |
| }, |
| { |
| "name": "Datsun 210", |
| "economy (mpg)": "40.8", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "65", |
| "weight (lb)": "2110", |
| "0-60 mph (s)": "19.2", |
| "year": "80" |
| }, |
| { |
| "name": "Datsun 280ZX", |
| "economy (mpg)": "32.7", |
| "cylinders": "6", |
| "displacement (cc)": "168", |
| "power (hp)": "132", |
| "weight (lb)": "2910", |
| "0-60 mph (s)": "11.4", |
| "year": "80" |
| }, |
| { |
| "name": "Datsun 310 GX", |
| "economy (mpg)": "38", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "67", |
| "weight (lb)": "1995", |
| "0-60 mph (s)": "16.2", |
| "year": "82" |
| }, |
| { |
| "name": "Datsun 310", |
| "economy (mpg)": "37.2", |
| "cylinders": "4", |
| "displacement (cc)": "86", |
| "power (hp)": "65", |
| "weight (lb)": "2019", |
| "0-60 mph (s)": "16.4", |
| "year": "80" |
| }, |
| { |
| "name": "Datsun 510 (Wagon)", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "92", |
| "weight (lb)": "2288", |
| "0-60 mph (s)": "17", |
| "year": "72" |
| }, |
| { |
| "name": "Datsun 510 Hatchback", |
| "economy (mpg)": "37", |
| "cylinders": "4", |
| "displacement (cc)": "119", |
| "power (hp)": "92", |
| "weight (lb)": "2434", |
| "0-60 mph (s)": "15", |
| "year": "80" |
| }, |
| { |
| "name": "Datsun 510", |
| "economy (mpg)": "27.2", |
| "cylinders": "4", |
| "displacement (cc)": "119", |
| "power (hp)": "97", |
| "weight (lb)": "2300", |
| "0-60 mph (s)": "14.7", |
| "year": "78" |
| }, |
| { |
| "name": "Datsun 610", |
| "economy (mpg)": "22", |
| "cylinders": "4", |
| "displacement (cc)": "108", |
| "power (hp)": "94", |
| "weight (lb)": "2379", |
| "0-60 mph (s)": "16.5", |
| "year": "73" |
| }, |
| { |
| "name": "Datsun 710", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "119", |
| "power (hp)": "97", |
| "weight (lb)": "2545", |
| "0-60 mph (s)": "17", |
| "year": "75" |
| }, |
| { |
| "name": "Datsun 710", |
| "economy (mpg)": "32", |
| "cylinders": "4", |
| "displacement (cc)": "83", |
| "power (hp)": "61", |
| "weight (lb)": "2003", |
| "0-60 mph (s)": "19", |
| "year": "74" |
| }, |
| { |
| "name": "Datsun 810 Maxima", |
| "economy (mpg)": "24.2", |
| "cylinders": "6", |
| "displacement (cc)": "146", |
| "power (hp)": "120", |
| "weight (lb)": "2930", |
| "0-60 mph (s)": "13.8", |
| "year": "81" |
| }, |
| { |
| "name": "Datsun 810", |
| "economy (mpg)": "22", |
| "cylinders": "6", |
| "displacement (cc)": "146", |
| "power (hp)": "97", |
| "weight (lb)": "2815", |
| "0-60 mph (s)": "14.5", |
| "year": "77" |
| }, |
| { |
| "name": "Datsun B-210", |
| "economy (mpg)": "32", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "70", |
| "weight (lb)": "1990", |
| "0-60 mph (s)": "17", |
| "year": "76" |
| }, |
| { |
| "name": "Datsun B210 GX", |
| "economy (mpg)": "39.4", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "70", |
| "weight (lb)": "2070", |
| "0-60 mph (s)": "18.6", |
| "year": "78" |
| }, |
| { |
| "name": "Datsun B210", |
| "economy (mpg)": "31", |
| "cylinders": "4", |
| "displacement (cc)": "79", |
| "power (hp)": "67", |
| "weight (lb)": "1950", |
| "0-60 mph (s)": "19", |
| "year": "74" |
| }, |
| { |
| "name": "Datsun F-10 Hatchback", |
| "economy (mpg)": "33.5", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "70", |
| "weight (lb)": "1945", |
| "0-60 mph (s)": "16.8", |
| "year": "77" |
| }, |
| { |
| "name": "Datsun PL510", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "88", |
| "weight (lb)": "2130", |
| "0-60 mph (s)": "14.5", |
| "year": "70" |
| }, |
| { |
| "name": "Datsun PL510", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "88", |
| "weight (lb)": "2130", |
| "0-60 mph (s)": "14.5", |
| "year": "71" |
| }, |
| { |
| "name": "Dodge Aries SE", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "135", |
| "power (hp)": "84", |
| "weight (lb)": "2525", |
| "0-60 mph (s)": "16", |
| "year": "82" |
| }, |
| { |
| "name": "Dodge Aries Wagon (Wagon)", |
| "economy (mpg)": "25.8", |
| "cylinders": "4", |
| "displacement (cc)": "156", |
| "power (hp)": "92", |
| "weight (lb)": "2620", |
| "0-60 mph (s)": "14.4", |
| "year": "81" |
| }, |
| { |
| "name": "Dodge Aspen 6", |
| "economy (mpg)": "20.6", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "110", |
| "weight (lb)": "3360", |
| "0-60 mph (s)": "16.6", |
| "year": "79" |
| }, |
| { |
| "name": "Dodge Aspen SE", |
| "economy (mpg)": "20", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "100", |
| "weight (lb)": "3651", |
| "0-60 mph (s)": "17.7", |
| "year": "76" |
| }, |
| { |
| "name": "Dodge Aspen", |
| "economy (mpg)": "18.6", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "110", |
| "weight (lb)": "3620", |
| "0-60 mph (s)": "18.7", |
| "year": "78" |
| }, |
| { |
| "name": "Dodge Aspen", |
| "economy (mpg)": "19.1", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "90", |
| "weight (lb)": "3381", |
| "0-60 mph (s)": "18.7", |
| "year": "80" |
| }, |
| { |
| "name": "Dodge Challenger SE", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "383", |
| "power (hp)": "170", |
| "weight (lb)": "3563", |
| "0-60 mph (s)": "10", |
| "year": "70" |
| }, |
| { |
| "name": "Dodge Charger 2.2", |
| "economy (mpg)": "36", |
| "cylinders": "4", |
| "displacement (cc)": "135", |
| "power (hp)": "84", |
| "weight (lb)": "2370", |
| "0-60 mph (s)": "13", |
| "year": "82" |
| }, |
| { |
| "name": "Dodge Colt (Wagon)", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "80", |
| "weight (lb)": "2164", |
| "0-60 mph (s)": "15", |
| "year": "72" |
| }, |
| { |
| "name": "Dodge Colt Hardtop", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "97.5", |
| "power (hp)": "80", |
| "weight (lb)": "2126", |
| "0-60 mph (s)": "17", |
| "year": "72" |
| }, |
| { |
| "name": "Dodge Colt Hatchback Custom", |
| "economy (mpg)": "35.7", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "80", |
| "weight (lb)": "1915", |
| "0-60 mph (s)": "14.4", |
| "year": "79" |
| }, |
| { |
| "name": "Dodge Colt M/M", |
| "economy (mpg)": "33.5", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "83", |
| "weight (lb)": "2075", |
| "0-60 mph (s)": "15.9", |
| "year": "77" |
| }, |
| { |
| "name": "Dodge Colt", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "79", |
| "weight (lb)": "2255", |
| "0-60 mph (s)": "17.7", |
| "year": "76" |
| }, |
| { |
| "name": "Dodge Colt", |
| "economy (mpg)": "27.9", |
| "cylinders": "4", |
| "displacement (cc)": "156", |
| "power (hp)": "105", |
| "weight (lb)": "2800", |
| "0-60 mph (s)": "14.4", |
| "year": "80" |
| }, |
| { |
| "name": "Dodge Colt", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "75", |
| "weight (lb)": "2125", |
| "0-60 mph (s)": "14.5", |
| "year": "74" |
| }, |
| { |
| "name": "Dodge Coronet Brougham", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "4190", |
| "0-60 mph (s)": "13", |
| "year": "76" |
| }, |
| { |
| "name": "Dodge Coronet Custom (Wagon)", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "4457", |
| "0-60 mph (s)": "13.5", |
| "year": "74" |
| }, |
| { |
| "name": "Dodge Coronet Custom", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "3777", |
| "0-60 mph (s)": "12.5", |
| "year": "73" |
| }, |
| { |
| "name": "Dodge D100", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "3755", |
| "0-60 mph (s)": "14", |
| "year": "76" |
| }, |
| { |
| "name": "Dodge D200", |
| "economy (mpg)": "11", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "210", |
| "weight (lb)": "4382", |
| "0-60 mph (s)": "13.5", |
| "year": "70" |
| }, |
| { |
| "name": "Dodge Dart Custom", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "3399", |
| "0-60 mph (s)": "11", |
| "year": "73" |
| }, |
| { |
| "name": "Dodge Diplomat", |
| "economy (mpg)": "19.4", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "140", |
| "weight (lb)": "3735", |
| "0-60 mph (s)": "13.2", |
| "year": "78" |
| }, |
| { |
| "name": "Dodge Magnum XE", |
| "economy (mpg)": "17.5", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "140", |
| "weight (lb)": "4080", |
| "0-60 mph (s)": "13.7", |
| "year": "78" |
| }, |
| { |
| "name": "Dodge Monaco (Wagon)", |
| "economy (mpg)": "12", |
| "cylinders": "8", |
| "displacement (cc)": "383", |
| "power (hp)": "180", |
| "weight (lb)": "4955", |
| "0-60 mph (s)": "11.5", |
| "year": "71" |
| }, |
| { |
| "name": "Dodge Monaco Brougham", |
| "economy (mpg)": "15.5", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "145", |
| "weight (lb)": "4140", |
| "0-60 mph (s)": "13.7", |
| "year": "77" |
| }, |
| { |
| "name": "Dodge Omni", |
| "economy (mpg)": "30.9", |
| "cylinders": "4", |
| "displacement (cc)": "105", |
| "power (hp)": "75", |
| "weight (lb)": "2230", |
| "0-60 mph (s)": "14.5", |
| "year": "78" |
| }, |
| { |
| "name": "Dodge Rampage", |
| "economy (mpg)": "32", |
| "cylinders": "4", |
| "displacement (cc)": "135", |
| "power (hp)": "84", |
| "weight (lb)": "2295", |
| "0-60 mph (s)": "11.6", |
| "year": "82" |
| }, |
| { |
| "name": "Dodge St. Regis", |
| "economy (mpg)": "18.2", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "135", |
| "weight (lb)": "3830", |
| "0-60 mph (s)": "15.2", |
| "year": "79" |
| }, |
| { |
| "name": "Fiat 124 Sport Coupe", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "90", |
| "weight (lb)": "2265", |
| "0-60 mph (s)": "15.5", |
| "year": "73" |
| }, |
| { |
| "name": "Fiat 124 TC", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "116", |
| "power (hp)": "75", |
| "weight (lb)": "2246", |
| "0-60 mph (s)": "14", |
| "year": "74" |
| }, |
| { |
| "name": "Fiat 124B", |
| "economy (mpg)": "30", |
| "cylinders": "4", |
| "displacement (cc)": "88", |
| "power (hp)": "76", |
| "weight (lb)": "2065", |
| "0-60 mph (s)": "14.5", |
| "year": "71" |
| }, |
| { |
| "name": "Fiat 128", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "75", |
| "weight (lb)": "2108", |
| "0-60 mph (s)": "15.5", |
| "year": "74" |
| }, |
| { |
| "name": "Fiat 128", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "68", |
| "power (hp)": "49", |
| "weight (lb)": "1867", |
| "0-60 mph (s)": "19.5", |
| "year": "73" |
| }, |
| { |
| "name": "Fiat 131", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "107", |
| "power (hp)": "86", |
| "weight (lb)": "2464", |
| "0-60 mph (s)": "15.5", |
| "year": "76" |
| }, |
| { |
| "name": "Fiat Strada Custom", |
| "economy (mpg)": "37.3", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "69", |
| "weight (lb)": "2130", |
| "0-60 mph (s)": "14.7", |
| "year": "79" |
| }, |
| { |
| "name": "Fiat X1.9", |
| "economy (mpg)": "31", |
| "cylinders": "4", |
| "displacement (cc)": "79", |
| "power (hp)": "67", |
| "weight (lb)": "2000", |
| "0-60 mph (s)": "16", |
| "year": "74" |
| }, |
| { |
| "name": "Ford Capri II", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "92", |
| "weight (lb)": "2572", |
| "0-60 mph (s)": "14.9", |
| "year": "76" |
| }, |
| { |
| "name": "Ford Country Squire (Wagon)", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "170", |
| "weight (lb)": "4746", |
| "0-60 mph (s)": "12", |
| "year": "71" |
| }, |
| { |
| "name": "Ford Country Squire (Wagon)", |
| "economy (mpg)": "15.5", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "142", |
| "weight (lb)": "4054", |
| "0-60 mph (s)": "14.3", |
| "year": "79" |
| }, |
| { |
| "name": "Ford Country", |
| "economy (mpg)": "12", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "167", |
| "weight (lb)": "4906", |
| "0-60 mph (s)": "12.5", |
| "year": "73" |
| }, |
| { |
| "name": "Ford Escort 2H", |
| "economy (mpg)": "29.9", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "65", |
| "weight (lb)": "2380", |
| "0-60 mph (s)": "20.7", |
| "year": "81" |
| }, |
| { |
| "name": "Ford Escort 4W", |
| "economy (mpg)": "34.4", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "65", |
| "weight (lb)": "2045", |
| "0-60 mph (s)": "16.2", |
| "year": "81" |
| }, |
| { |
| "name": "Ford F108", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "130", |
| "weight (lb)": "3870", |
| "0-60 mph (s)": "15", |
| "year": "76" |
| }, |
| { |
| "name": "Ford F250", |
| "economy (mpg)": "10", |
| "cylinders": "8", |
| "displacement (cc)": "360", |
| "power (hp)": "215", |
| "weight (lb)": "4615", |
| "0-60 mph (s)": "14", |
| "year": "70" |
| }, |
| { |
| "name": "Ford Fairmont (Auto)", |
| "economy (mpg)": "20.2", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "85", |
| "weight (lb)": "2965", |
| "0-60 mph (s)": "15.8", |
| "year": "78" |
| }, |
| { |
| "name": "Ford Fairmont (Man)", |
| "economy (mpg)": "25.1", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "88", |
| "weight (lb)": "2720", |
| "0-60 mph (s)": "15.4", |
| "year": "78" |
| }, |
| { |
| "name": "Ford Fairmont 4", |
| "economy (mpg)": "22.3", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "88", |
| "weight (lb)": "2890", |
| "0-60 mph (s)": "17.3", |
| "year": "79" |
| }, |
| { |
| "name": "Ford Fairmont Futura", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "92", |
| "weight (lb)": "2865", |
| "0-60 mph (s)": "16.4", |
| "year": "82" |
| }, |
| { |
| "name": "Ford Fairmont", |
| "economy (mpg)": "26.4", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "88", |
| "weight (lb)": "2870", |
| "0-60 mph (s)": "18.1", |
| "year": "80" |
| }, |
| { |
| "name": "Ford Fiesta", |
| "economy (mpg)": "36.1", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "66", |
| "weight (lb)": "1800", |
| "0-60 mph (s)": "14.4", |
| "year": "78" |
| }, |
| { |
| "name": "Ford Futura", |
| "economy (mpg)": "18.1", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "139", |
| "weight (lb)": "3205", |
| "0-60 mph (s)": "11.2", |
| "year": "78" |
| }, |
| { |
| "name": "Ford Galaxie 500", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "153", |
| "weight (lb)": "4129", |
| "0-60 mph (s)": "13", |
| "year": "72" |
| }, |
| { |
| "name": "Ford Galaxie 500", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "153", |
| "weight (lb)": "4154", |
| "0-60 mph (s)": "13.5", |
| "year": "71" |
| }, |
| { |
| "name": "Ford Galaxie 500", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "429", |
| "power (hp)": "198", |
| "weight (lb)": "4341", |
| "0-60 mph (s)": "10", |
| "year": "70" |
| }, |
| { |
| "name": "Ford Gran Torino (Wagon)", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "140", |
| "weight (lb)": "4294", |
| "0-60 mph (s)": "16", |
| "year": "72" |
| }, |
| { |
| "name": "Ford Gran Torino (Wagon)", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "140", |
| "weight (lb)": "4638", |
| "0-60 mph (s)": "16", |
| "year": "74" |
| }, |
| { |
| "name": "Ford Gran Torino", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "137", |
| "weight (lb)": "4042", |
| "0-60 mph (s)": "14.5", |
| "year": "73" |
| }, |
| { |
| "name": "Ford Gran Torino", |
| "economy (mpg)": "14.5", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "152", |
| "weight (lb)": "4215", |
| "0-60 mph (s)": "12.8", |
| "year": "76" |
| }, |
| { |
| "name": "Ford Gran Torino", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "140", |
| "weight (lb)": "4141", |
| "0-60 mph (s)": "14", |
| "year": "74" |
| }, |
| { |
| "name": "Ford Granada Ghia", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "78", |
| "weight (lb)": "3574", |
| "0-60 mph (s)": "21", |
| "year": "76" |
| }, |
| { |
| "name": "Ford Granada GL", |
| "economy (mpg)": "20.2", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "88", |
| "weight (lb)": "3060", |
| "0-60 mph (s)": "17.1", |
| "year": "81" |
| }, |
| { |
| "name": "Ford Granada L", |
| "economy (mpg)": "22", |
| "cylinders": "6", |
| "displacement (cc)": "232", |
| "power (hp)": "112", |
| "weight (lb)": "2835", |
| "0-60 mph (s)": "14.7", |
| "year": "82" |
| }, |
| { |
| "name": "Ford Granada", |
| "economy (mpg)": "18.5", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "98", |
| "weight (lb)": "3525", |
| "0-60 mph (s)": "19", |
| "year": "77" |
| }, |
| { |
| "name": "Ford LTD Landau", |
| "economy (mpg)": "17.6", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "129", |
| "weight (lb)": "3725", |
| "0-60 mph (s)": "13.4", |
| "year": "79" |
| }, |
| { |
| "name": "Ford LTD", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "158", |
| "weight (lb)": "4363", |
| "0-60 mph (s)": "13", |
| "year": "73" |
| }, |
| { |
| "name": "Ford LTD", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "148", |
| "weight (lb)": "4657", |
| "0-60 mph (s)": "13.5", |
| "year": "75" |
| }, |
| { |
| "name": "Ford Maverick", |
| "economy (mpg)": "15", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "72", |
| "weight (lb)": "3158", |
| "0-60 mph (s)": "19.5", |
| "year": "75" |
| }, |
| { |
| "name": "Ford Maverick", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "88", |
| "weight (lb)": "3021", |
| "0-60 mph (s)": "16.5", |
| "year": "73" |
| }, |
| { |
| "name": "Ford Maverick", |
| "economy (mpg)": "21", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "", |
| "weight (lb)": "2875", |
| "0-60 mph (s)": "17", |
| "year": "74" |
| }, |
| { |
| "name": "Ford Maverick", |
| "economy (mpg)": "21", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "85", |
| "weight (lb)": "2587", |
| "0-60 mph (s)": "16", |
| "year": "70" |
| }, |
| { |
| "name": "Ford Maverick", |
| "economy (mpg)": "24", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "81", |
| "weight (lb)": "3012", |
| "0-60 mph (s)": "17.6", |
| "year": "76" |
| }, |
| { |
| "name": "Ford Mustang Boss 302", |
| "economy (mpg)": "", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "140", |
| "weight (lb)": "3353", |
| "0-60 mph (s)": "8", |
| "year": "70" |
| }, |
| { |
| "name": "Ford Mustang Cobra", |
| "economy (mpg)": "23.6", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "", |
| "weight (lb)": "2905", |
| "0-60 mph (s)": "14.3", |
| "year": "80" |
| }, |
| { |
| "name": "Ford Mustang GL", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "86", |
| "weight (lb)": "2790", |
| "0-60 mph (s)": "15.6", |
| "year": "82" |
| }, |
| { |
| "name": "Ford Mustang II 2+2", |
| "economy (mpg)": "25.5", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "89", |
| "weight (lb)": "2755", |
| "0-60 mph (s)": "15.8", |
| "year": "77" |
| }, |
| { |
| "name": "Ford Mustang II", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "129", |
| "weight (lb)": "3169", |
| "0-60 mph (s)": "12", |
| "year": "75" |
| }, |
| { |
| "name": "Ford Mustang", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "88", |
| "weight (lb)": "3139", |
| "0-60 mph (s)": "14.5", |
| "year": "71" |
| }, |
| { |
| "name": "Ford Pinto (Wagon)", |
| "economy (mpg)": "22", |
| "cylinders": "4", |
| "displacement (cc)": "122", |
| "power (hp)": "86", |
| "weight (lb)": "2395", |
| "0-60 mph (s)": "16", |
| "year": "72" |
| }, |
| { |
| "name": "Ford Pinto Runabout", |
| "economy (mpg)": "21", |
| "cylinders": "4", |
| "displacement (cc)": "122", |
| "power (hp)": "86", |
| "weight (lb)": "2226", |
| "0-60 mph (s)": "16.5", |
| "year": "72" |
| }, |
| { |
| "name": "Ford Pinto", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "171", |
| "power (hp)": "97", |
| "weight (lb)": "2984", |
| "0-60 mph (s)": "14.5", |
| "year": "75" |
| }, |
| { |
| "name": "Ford Pinto", |
| "economy (mpg)": "19", |
| "cylinders": "4", |
| "displacement (cc)": "122", |
| "power (hp)": "85", |
| "weight (lb)": "2310", |
| "0-60 mph (s)": "18.5", |
| "year": "73" |
| }, |
| { |
| "name": "Ford Pinto", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "83", |
| "weight (lb)": "2639", |
| "0-60 mph (s)": "17", |
| "year": "75" |
| }, |
| { |
| "name": "Ford Pinto", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "", |
| "weight (lb)": "2046", |
| "0-60 mph (s)": "19", |
| "year": "71" |
| }, |
| { |
| "name": "Ford Pinto", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "122", |
| "power (hp)": "80", |
| "weight (lb)": "2451", |
| "0-60 mph (s)": "16.5", |
| "year": "74" |
| }, |
| { |
| "name": "Ford Pinto", |
| "economy (mpg)": "26.5", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "72", |
| "weight (lb)": "2565", |
| "0-60 mph (s)": "13.6", |
| "year": "76" |
| }, |
| { |
| "name": "Ford Ranger", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "79", |
| "weight (lb)": "2625", |
| "0-60 mph (s)": "18.6", |
| "year": "82" |
| }, |
| { |
| "name": "Ford Thunderbird", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "149", |
| "weight (lb)": "4335", |
| "0-60 mph (s)": "14.5", |
| "year": "77" |
| }, |
| { |
| "name": "Ford Torino (Wagon)", |
| "economy (mpg)": "", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "153", |
| "weight (lb)": "4034", |
| "0-60 mph (s)": "11", |
| "year": "70" |
| }, |
| { |
| "name": "Ford Torino 500", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "88", |
| "weight (lb)": "3302", |
| "0-60 mph (s)": "15.5", |
| "year": "71" |
| }, |
| { |
| "name": "Ford Torino", |
| "economy (mpg)": "17", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "140", |
| "weight (lb)": "3449", |
| "0-60 mph (s)": "10.5", |
| "year": "70" |
| }, |
| { |
| "name": "Hi 1200D", |
| "economy (mpg)": "9", |
| "cylinders": "8", |
| "displacement (cc)": "304", |
| "power (hp)": "193", |
| "weight (lb)": "4732", |
| "0-60 mph (s)": "18.5", |
| "year": "70" |
| }, |
| { |
| "name": "Honda Accord CVCC", |
| "economy (mpg)": "31.5", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "68", |
| "weight (lb)": "2045", |
| "0-60 mph (s)": "18.5", |
| "year": "77" |
| }, |
| { |
| "name": "Honda Accord LX", |
| "economy (mpg)": "29.5", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "68", |
| "weight (lb)": "2135", |
| "0-60 mph (s)": "16.6", |
| "year": "78" |
| }, |
| { |
| "name": "Honda Accord", |
| "economy (mpg)": "32.4", |
| "cylinders": "4", |
| "displacement (cc)": "107", |
| "power (hp)": "72", |
| "weight (lb)": "2290", |
| "0-60 mph (s)": "17", |
| "year": "80" |
| }, |
| { |
| "name": "Honda Accord", |
| "economy (mpg)": "36", |
| "cylinders": "4", |
| "displacement (cc)": "107", |
| "power (hp)": "75", |
| "weight (lb)": "2205", |
| "0-60 mph (s)": "14.5", |
| "year": "82" |
| }, |
| { |
| "name": "Honda Civic (Auto)", |
| "economy (mpg)": "32", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "67", |
| "weight (lb)": "1965", |
| "0-60 mph (s)": "15.7", |
| "year": "82" |
| }, |
| { |
| "name": "Honda Civic 1300", |
| "economy (mpg)": "35.1", |
| "cylinders": "4", |
| "displacement (cc)": "81", |
| "power (hp)": "60", |
| "weight (lb)": "1760", |
| "0-60 mph (s)": "16.1", |
| "year": "81" |
| }, |
| { |
| "name": "Honda Civic 1500 GL", |
| "economy (mpg)": "44.6", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "67", |
| "weight (lb)": "1850", |
| "0-60 mph (s)": "13.8", |
| "year": "80" |
| }, |
| { |
| "name": "Honda Civic CVCC", |
| "economy (mpg)": "33", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "53", |
| "weight (lb)": "1795", |
| "0-60 mph (s)": "17.5", |
| "year": "75" |
| }, |
| { |
| "name": "Honda Civic CVCC", |
| "economy (mpg)": "36.1", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "60", |
| "weight (lb)": "1800", |
| "0-60 mph (s)": "16.4", |
| "year": "78" |
| }, |
| { |
| "name": "Honda Civic", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "97", |
| "weight (lb)": "2489", |
| "0-60 mph (s)": "15", |
| "year": "74" |
| }, |
| { |
| "name": "Honda Civic", |
| "economy (mpg)": "33", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "53", |
| "weight (lb)": "1795", |
| "0-60 mph (s)": "17.4", |
| "year": "76" |
| }, |
| { |
| "name": "Honda Civic", |
| "economy (mpg)": "38", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "67", |
| "weight (lb)": "1965", |
| "0-60 mph (s)": "15", |
| "year": "82" |
| }, |
| { |
| "name": "Honda Prelude", |
| "economy (mpg)": "33.7", |
| "cylinders": "4", |
| "displacement (cc)": "107", |
| "power (hp)": "75", |
| "weight (lb)": "2210", |
| "0-60 mph (s)": "14.4", |
| "year": "81" |
| }, |
| { |
| "name": "Maxda GLC Deluxe", |
| "economy (mpg)": "34.1", |
| "cylinders": "4", |
| "displacement (cc)": "86", |
| "power (hp)": "65", |
| "weight (lb)": "1975", |
| "0-60 mph (s)": "15.2", |
| "year": "79" |
| }, |
| { |
| "name": "Maxda RX-3", |
| "economy (mpg)": "18", |
| "cylinders": "3", |
| "displacement (cc)": "70", |
| "power (hp)": "90", |
| "weight (lb)": "2124", |
| "0-60 mph (s)": "13.5", |
| "year": "73" |
| }, |
| { |
| "name": "Mazda 626", |
| "economy (mpg)": "31.3", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "75", |
| "weight (lb)": "2542", |
| "0-60 mph (s)": "17.5", |
| "year": "80" |
| }, |
| { |
| "name": "Mazda 626", |
| "economy (mpg)": "31.6", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "74", |
| "weight (lb)": "2635", |
| "0-60 mph (s)": "18.3", |
| "year": "81" |
| }, |
| { |
| "name": "Mazda GLC 4", |
| "economy (mpg)": "34.1", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "68", |
| "weight (lb)": "1985", |
| "0-60 mph (s)": "16", |
| "year": "81" |
| }, |
| { |
| "name": "Mazda GLC Custom L", |
| "economy (mpg)": "37", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "68", |
| "weight (lb)": "2025", |
| "0-60 mph (s)": "18.2", |
| "year": "82" |
| }, |
| { |
| "name": "Mazda GLC Custom", |
| "economy (mpg)": "31", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "68", |
| "weight (lb)": "1970", |
| "0-60 mph (s)": "17.6", |
| "year": "82" |
| }, |
| { |
| "name": "Mazda GLC Deluxe", |
| "economy (mpg)": "32.8", |
| "cylinders": "4", |
| "displacement (cc)": "78", |
| "power (hp)": "52", |
| "weight (lb)": "1985", |
| "0-60 mph (s)": "19.4", |
| "year": "78" |
| }, |
| { |
| "name": "Mazda GLC", |
| "economy (mpg)": "46.6", |
| "cylinders": "4", |
| "displacement (cc)": "86", |
| "power (hp)": "65", |
| "weight (lb)": "2110", |
| "0-60 mph (s)": "17.9", |
| "year": "80" |
| }, |
| { |
| "name": "Mazda RX-2 Coupe", |
| "economy (mpg)": "19", |
| "cylinders": "3", |
| "displacement (cc)": "70", |
| "power (hp)": "97", |
| "weight (lb)": "2330", |
| "0-60 mph (s)": "13.5", |
| "year": "72" |
| }, |
| { |
| "name": "Mazda RX-4", |
| "economy (mpg)": "21.5", |
| "cylinders": "3", |
| "displacement (cc)": "80", |
| "power (hp)": "110", |
| "weight (lb)": "2720", |
| "0-60 mph (s)": "13.5", |
| "year": "77" |
| }, |
| { |
| "name": "Mazda RX-7 Gs", |
| "economy (mpg)": "23.7", |
| "cylinders": "3", |
| "displacement (cc)": "70", |
| "power (hp)": "100", |
| "weight (lb)": "2420", |
| "0-60 mph (s)": "12.5", |
| "year": "80" |
| }, |
| { |
| "name": "Mercedes-Benz 240D", |
| "economy (mpg)": "30", |
| "cylinders": "4", |
| "displacement (cc)": "146", |
| "power (hp)": "67", |
| "weight (lb)": "3250", |
| "0-60 mph (s)": "21.8", |
| "year": "80" |
| }, |
| { |
| "name": "Mercedes-Benz 280S", |
| "economy (mpg)": "16.5", |
| "cylinders": "6", |
| "displacement (cc)": "168", |
| "power (hp)": "120", |
| "weight (lb)": "3820", |
| "0-60 mph (s)": "16.7", |
| "year": "76" |
| }, |
| { |
| "name": "Mercedes-Benz 300D", |
| "economy (mpg)": "25.4", |
| "cylinders": "5", |
| "displacement (cc)": "183", |
| "power (hp)": "77", |
| "weight (lb)": "3530", |
| "0-60 mph (s)": "20.1", |
| "year": "79" |
| }, |
| { |
| "name": "Mercury Capri 2000", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "122", |
| "power (hp)": "86", |
| "weight (lb)": "2220", |
| "0-60 mph (s)": "14", |
| "year": "71" |
| }, |
| { |
| "name": "Mercury Capri V6", |
| "economy (mpg)": "21", |
| "cylinders": "6", |
| "displacement (cc)": "155", |
| "power (hp)": "107", |
| "weight (lb)": "2472", |
| "0-60 mph (s)": "14", |
| "year": "73" |
| }, |
| { |
| "name": "Mercury Cougar Brougham", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "130", |
| "weight (lb)": "4295", |
| "0-60 mph (s)": "14.9", |
| "year": "77" |
| }, |
| { |
| "name": "Mercury Grand Marquis", |
| "economy (mpg)": "16.5", |
| "cylinders": "8", |
| "displacement (cc)": "351", |
| "power (hp)": "138", |
| "weight (lb)": "3955", |
| "0-60 mph (s)": "13.2", |
| "year": "79" |
| }, |
| { |
| "name": "Mercury Lynx L", |
| "economy (mpg)": "36", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "70", |
| "weight (lb)": "2125", |
| "0-60 mph (s)": "17.3", |
| "year": "82" |
| }, |
| { |
| "name": "Mercury Marquis Brougham", |
| "economy (mpg)": "12", |
| "cylinders": "8", |
| "displacement (cc)": "429", |
| "power (hp)": "198", |
| "weight (lb)": "4952", |
| "0-60 mph (s)": "11.5", |
| "year": "73" |
| }, |
| { |
| "name": "Mercury Marquis", |
| "economy (mpg)": "11", |
| "cylinders": "8", |
| "displacement (cc)": "429", |
| "power (hp)": "208", |
| "weight (lb)": "4633", |
| "0-60 mph (s)": "11", |
| "year": "72" |
| }, |
| { |
| "name": "Mercury Monarch Ghia", |
| "economy (mpg)": "20.2", |
| "cylinders": "8", |
| "displacement (cc)": "302", |
| "power (hp)": "139", |
| "weight (lb)": "3570", |
| "0-60 mph (s)": "12.8", |
| "year": "78" |
| }, |
| { |
| "name": "Mercury Monarch", |
| "economy (mpg)": "15", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "72", |
| "weight (lb)": "3432", |
| "0-60 mph (s)": "21", |
| "year": "75" |
| }, |
| { |
| "name": "Mercury Zephyr 6", |
| "economy (mpg)": "19.8", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "85", |
| "weight (lb)": "2990", |
| "0-60 mph (s)": "18.2", |
| "year": "79" |
| }, |
| { |
| "name": "Mercury Zephyr", |
| "economy (mpg)": "20.8", |
| "cylinders": "6", |
| "displacement (cc)": "200", |
| "power (hp)": "85", |
| "weight (lb)": "3070", |
| "0-60 mph (s)": "16.7", |
| "year": "78" |
| }, |
| { |
| "name": "Nissan Stanza XE", |
| "economy (mpg)": "36", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "88", |
| "weight (lb)": "2160", |
| "0-60 mph (s)": "14.5", |
| "year": "82" |
| }, |
| { |
| "name": "Oldsmobile Cutlass Ciera (Diesel)", |
| "economy (mpg)": "38", |
| "cylinders": "6", |
| "displacement (cc)": "262", |
| "power (hp)": "85", |
| "weight (lb)": "3015", |
| "0-60 mph (s)": "17", |
| "year": "82" |
| }, |
| { |
| "name": "Oldsmobile Cutlass LS", |
| "economy (mpg)": "26.6", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "105", |
| "weight (lb)": "3725", |
| "0-60 mph (s)": "19", |
| "year": "81" |
| }, |
| { |
| "name": "Oldsmobile Cutlass Salon Brougham", |
| "economy (mpg)": "19.9", |
| "cylinders": "8", |
| "displacement (cc)": "260", |
| "power (hp)": "110", |
| "weight (lb)": "3365", |
| "0-60 mph (s)": "15.5", |
| "year": "78" |
| }, |
| { |
| "name": "Oldsmobile Cutlass Salon Brougham", |
| "economy (mpg)": "23.9", |
| "cylinders": "8", |
| "displacement (cc)": "260", |
| "power (hp)": "90", |
| "weight (lb)": "3420", |
| "0-60 mph (s)": "22.2", |
| "year": "79" |
| }, |
| { |
| "name": "Oldsmobile Cutlass Supreme", |
| "economy (mpg)": "17", |
| "cylinders": "8", |
| "displacement (cc)": "260", |
| "power (hp)": "110", |
| "weight (lb)": "4060", |
| "0-60 mph (s)": "19", |
| "year": "77" |
| }, |
| { |
| "name": "Oldsmobile Delta 88 Royale", |
| "economy (mpg)": "12", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "160", |
| "weight (lb)": "4456", |
| "0-60 mph (s)": "13.5", |
| "year": "72" |
| }, |
| { |
| "name": "Oldsmobile Omega Brougham", |
| "economy (mpg)": "26.8", |
| "cylinders": "6", |
| "displacement (cc)": "173", |
| "power (hp)": "115", |
| "weight (lb)": "2700", |
| "0-60 mph (s)": "12.9", |
| "year": "79" |
| }, |
| { |
| "name": "Oldsmobile Omega", |
| "economy (mpg)": "11", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "180", |
| "weight (lb)": "3664", |
| "0-60 mph (s)": "11", |
| "year": "73" |
| }, |
| { |
| "name": "Oldsmobile Starfire SX", |
| "economy (mpg)": "23.8", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "85", |
| "weight (lb)": "2855", |
| "0-60 mph (s)": "17.6", |
| "year": "78" |
| }, |
| { |
| "name": "Oldsmobile Vista Cruiser", |
| "economy (mpg)": "12", |
| "cylinders": "8", |
| "displacement (cc)": "350", |
| "power (hp)": "180", |
| "weight (lb)": "4499", |
| "0-60 mph (s)": "12.5", |
| "year": "73" |
| }, |
| { |
| "name": "Opel 1900", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "116", |
| "power (hp)": "81", |
| "weight (lb)": "2220", |
| "0-60 mph (s)": "16.9", |
| "year": "76" |
| }, |
| { |
| "name": "Opel 1900", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "116", |
| "power (hp)": "90", |
| "weight (lb)": "2123", |
| "0-60 mph (s)": "14", |
| "year": "71" |
| }, |
| { |
| "name": "Opel Manta", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "116", |
| "power (hp)": "75", |
| "weight (lb)": "2158", |
| "0-60 mph (s)": "15.5", |
| "year": "73" |
| }, |
| { |
| "name": "Opel Manta", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "78", |
| "weight (lb)": "2300", |
| "0-60 mph (s)": "14.5", |
| "year": "74" |
| }, |
| { |
| "name": "Peugeot 304", |
| "economy (mpg)": "30", |
| "cylinders": "4", |
| "displacement (cc)": "79", |
| "power (hp)": "70", |
| "weight (lb)": "2074", |
| "0-60 mph (s)": "19.5", |
| "year": "71" |
| }, |
| { |
| "name": "Peugeot 504 (Wagon)", |
| "economy (mpg)": "21", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "87", |
| "weight (lb)": "2979", |
| "0-60 mph (s)": "19.5", |
| "year": "72" |
| }, |
| { |
| "name": "Peugeot 504", |
| "economy (mpg)": "19", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "88", |
| "weight (lb)": "3270", |
| "0-60 mph (s)": "21.9", |
| "year": "76" |
| }, |
| { |
| "name": "Peugeot 504", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "88", |
| "weight (lb)": "2957", |
| "0-60 mph (s)": "17", |
| "year": "75" |
| }, |
| { |
| "name": "Peugeot 504", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "110", |
| "power (hp)": "87", |
| "weight (lb)": "2672", |
| "0-60 mph (s)": "17.5", |
| "year": "70" |
| }, |
| { |
| "name": "Peugeot 504", |
| "economy (mpg)": "27.2", |
| "cylinders": "4", |
| "displacement (cc)": "141", |
| "power (hp)": "71", |
| "weight (lb)": "3190", |
| "0-60 mph (s)": "24.8", |
| "year": "79" |
| }, |
| { |
| "name": "Peugeot 505S Turbo Diesel", |
| "economy (mpg)": "28.1", |
| "cylinders": "4", |
| "displacement (cc)": "141", |
| "power (hp)": "80", |
| "weight (lb)": "3230", |
| "0-60 mph (s)": "20.4", |
| "year": "81" |
| }, |
| { |
| "name": "Peugeot 604SL", |
| "economy (mpg)": "16.2", |
| "cylinders": "6", |
| "displacement (cc)": "163", |
| "power (hp)": "133", |
| "weight (lb)": "3410", |
| "0-60 mph (s)": "15.8", |
| "year": "78" |
| }, |
| { |
| "name": "Plymouth Arrow GS", |
| "economy (mpg)": "25.5", |
| "cylinders": "4", |
| "displacement (cc)": "122", |
| "power (hp)": "96", |
| "weight (lb)": "2300", |
| "0-60 mph (s)": "15.5", |
| "year": "77" |
| }, |
| { |
| "name": "Plymouth Barracuda 340", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "340", |
| "power (hp)": "160", |
| "weight (lb)": "3609", |
| "0-60 mph (s)": "8", |
| "year": "70" |
| }, |
| { |
| "name": "Plymouth Champ", |
| "economy (mpg)": "39", |
| "cylinders": "4", |
| "displacement (cc)": "86", |
| "power (hp)": "64", |
| "weight (lb)": "1875", |
| "0-60 mph (s)": "16.4", |
| "year": "81" |
| }, |
| { |
| "name": "Plymouth Cricket", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "91", |
| "power (hp)": "70", |
| "weight (lb)": "1955", |
| "0-60 mph (s)": "20.5", |
| "year": "71" |
| }, |
| { |
| "name": "Plymouth Custom Suburb", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "360", |
| "power (hp)": "170", |
| "weight (lb)": "4654", |
| "0-60 mph (s)": "13", |
| "year": "73" |
| }, |
| { |
| "name": "Plymouth Duster", |
| "economy (mpg)": "20", |
| "cylinders": "6", |
| "displacement (cc)": "198", |
| "power (hp)": "95", |
| "weight (lb)": "3102", |
| "0-60 mph (s)": "16.5", |
| "year": "74" |
| }, |
| { |
| "name": "Plymouth Duster", |
| "economy (mpg)": "22", |
| "cylinders": "6", |
| "displacement (cc)": "198", |
| "power (hp)": "95", |
| "weight (lb)": "2833", |
| "0-60 mph (s)": "15.5", |
| "year": "70" |
| }, |
| { |
| "name": "Plymouth Duster", |
| "economy (mpg)": "23", |
| "cylinders": "6", |
| "displacement (cc)": "198", |
| "power (hp)": "95", |
| "weight (lb)": "2904", |
| "0-60 mph (s)": "16", |
| "year": "73" |
| }, |
| { |
| "name": "Plymouth Fury Gran Sedan", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "4237", |
| "0-60 mph (s)": "14.5", |
| "year": "73" |
| }, |
| { |
| "name": "Plymouth Fury III", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "4096", |
| "0-60 mph (s)": "13", |
| "year": "71" |
| }, |
| { |
| "name": "Plymouth Fury III", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "440", |
| "power (hp)": "215", |
| "weight (lb)": "4312", |
| "0-60 mph (s)": "8.5", |
| "year": "70" |
| }, |
| { |
| "name": "Plymouth Fury III", |
| "economy (mpg)": "15", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "4135", |
| "0-60 mph (s)": "13.5", |
| "year": "72" |
| }, |
| { |
| "name": "Plymouth Fury", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "95", |
| "weight (lb)": "3785", |
| "0-60 mph (s)": "19", |
| "year": "75" |
| }, |
| { |
| "name": "Plymouth Grand Fury", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "4498", |
| "0-60 mph (s)": "14.5", |
| "year": "75" |
| }, |
| { |
| "name": "Plymouth Horizon 4", |
| "economy (mpg)": "34.7", |
| "cylinders": "4", |
| "displacement (cc)": "105", |
| "power (hp)": "63", |
| "weight (lb)": "2215", |
| "0-60 mph (s)": "14.9", |
| "year": "81" |
| }, |
| { |
| "name": "Plymouth Horizon Miser", |
| "economy (mpg)": "38", |
| "cylinders": "4", |
| "displacement (cc)": "105", |
| "power (hp)": "63", |
| "weight (lb)": "2125", |
| "0-60 mph (s)": "14.7", |
| "year": "82" |
| }, |
| { |
| "name": "Plymouth Horizon TC3", |
| "economy (mpg)": "34.5", |
| "cylinders": "4", |
| "displacement (cc)": "105", |
| "power (hp)": "70", |
| "weight (lb)": "2150", |
| "0-60 mph (s)": "14.9", |
| "year": "79" |
| }, |
| { |
| "name": "Plymouth Horizon", |
| "economy (mpg)": "34.2", |
| "cylinders": "4", |
| "displacement (cc)": "105", |
| "power (hp)": "70", |
| "weight (lb)": "2200", |
| "0-60 mph (s)": "13.2", |
| "year": "79" |
| }, |
| { |
| "name": "Plymouth Reliant", |
| "economy (mpg)": "27.2", |
| "cylinders": "4", |
| "displacement (cc)": "135", |
| "power (hp)": "84", |
| "weight (lb)": "2490", |
| "0-60 mph (s)": "15.7", |
| "year": "81" |
| }, |
| { |
| "name": "Plymouth Reliant", |
| "economy (mpg)": "30", |
| "cylinders": "4", |
| "displacement (cc)": "135", |
| "power (hp)": "84", |
| "weight (lb)": "2385", |
| "0-60 mph (s)": "12.9", |
| "year": "81" |
| }, |
| { |
| "name": "Plymouth Sapporo", |
| "economy (mpg)": "23.2", |
| "cylinders": "4", |
| "displacement (cc)": "156", |
| "power (hp)": "105", |
| "weight (lb)": "2745", |
| "0-60 mph (s)": "16.7", |
| "year": "78" |
| }, |
| { |
| "name": "Plymouth Satellite (Wagon)", |
| "economy (mpg)": "", |
| "cylinders": "8", |
| "displacement (cc)": "383", |
| "power (hp)": "175", |
| "weight (lb)": "4166", |
| "0-60 mph (s)": "10.5", |
| "year": "70" |
| }, |
| { |
| "name": "Plymouth Satellite Custom (Wagon)", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "4077", |
| "0-60 mph (s)": "14", |
| "year": "72" |
| }, |
| { |
| "name": "Plymouth Satellite Custom", |
| "economy (mpg)": "16", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "105", |
| "weight (lb)": "3439", |
| "0-60 mph (s)": "15.5", |
| "year": "71" |
| }, |
| { |
| "name": "Plymouth Satellite Sebring", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "105", |
| "weight (lb)": "3613", |
| "0-60 mph (s)": "16.5", |
| "year": "74" |
| }, |
| { |
| "name": "Plymouth Satellite", |
| "economy (mpg)": "18", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "3436", |
| "0-60 mph (s)": "11", |
| "year": "70" |
| }, |
| { |
| "name": "Plymouth Valiant Custom", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "95", |
| "weight (lb)": "3264", |
| "0-60 mph (s)": "16", |
| "year": "75" |
| }, |
| { |
| "name": "Plymouth Valiant", |
| "economy (mpg)": "18", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "105", |
| "weight (lb)": "3121", |
| "0-60 mph (s)": "16.5", |
| "year": "73" |
| }, |
| { |
| "name": "Plymouth Valiant", |
| "economy (mpg)": "22", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "100", |
| "weight (lb)": "3233", |
| "0-60 mph (s)": "15.4", |
| "year": "76" |
| }, |
| { |
| "name": "Plymouth Volare Custom", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "100", |
| "weight (lb)": "3630", |
| "0-60 mph (s)": "17.7", |
| "year": "77" |
| }, |
| { |
| "name": "Plymouth Volare Premier V8", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "318", |
| "power (hp)": "150", |
| "weight (lb)": "3940", |
| "0-60 mph (s)": "13.2", |
| "year": "76" |
| }, |
| { |
| "name": "Plymouth Volare", |
| "economy (mpg)": "20.5", |
| "cylinders": "6", |
| "displacement (cc)": "225", |
| "power (hp)": "100", |
| "weight (lb)": "3430", |
| "0-60 mph (s)": "17.2", |
| "year": "78" |
| }, |
| { |
| "name": "Pontiac Astro", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "140", |
| "power (hp)": "78", |
| "weight (lb)": "2592", |
| "0-60 mph (s)": "18.5", |
| "year": "75" |
| }, |
| { |
| "name": "Pontiac Catalina Brougham", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "175", |
| "weight (lb)": "4464", |
| "0-60 mph (s)": "11.5", |
| "year": "71" |
| }, |
| { |
| "name": "Pontiac Catalina", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "175", |
| "weight (lb)": "4385", |
| "0-60 mph (s)": "12", |
| "year": "72" |
| }, |
| { |
| "name": "Pontiac Catalina", |
| "economy (mpg)": "14", |
| "cylinders": "8", |
| "displacement (cc)": "455", |
| "power (hp)": "225", |
| "weight (lb)": "4425", |
| "0-60 mph (s)": "10", |
| "year": "70" |
| }, |
| { |
| "name": "Pontiac Catalina", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "170", |
| "weight (lb)": "4668", |
| "0-60 mph (s)": "11.5", |
| "year": "75" |
| }, |
| { |
| "name": "Pontiac Firebird", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "100", |
| "weight (lb)": "3282", |
| "0-60 mph (s)": "15", |
| "year": "71" |
| }, |
| { |
| "name": "Pontiac Grand Prix Lj", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "180", |
| "weight (lb)": "4220", |
| "0-60 mph (s)": "11.1", |
| "year": "77" |
| }, |
| { |
| "name": "Pontiac Grand Prix", |
| "economy (mpg)": "16", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "230", |
| "weight (lb)": "4278", |
| "0-60 mph (s)": "9.5", |
| "year": "73" |
| }, |
| { |
| "name": "Pontiac J2000 Se Hatchback", |
| "economy (mpg)": "31", |
| "cylinders": "4", |
| "displacement (cc)": "112", |
| "power (hp)": "85", |
| "weight (lb)": "2575", |
| "0-60 mph (s)": "16.2", |
| "year": "82" |
| }, |
| { |
| "name": "Pontiac Lemans V6", |
| "economy (mpg)": "21.5", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "115", |
| "weight (lb)": "3245", |
| "0-60 mph (s)": "15.4", |
| "year": "79" |
| }, |
| { |
| "name": "Pontiac Phoenix LJ", |
| "economy (mpg)": "19.2", |
| "cylinders": "6", |
| "displacement (cc)": "231", |
| "power (hp)": "105", |
| "weight (lb)": "3535", |
| "0-60 mph (s)": "19.2", |
| "year": "78" |
| }, |
| { |
| "name": "Pontiac Phoenix", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "90", |
| "weight (lb)": "2735", |
| "0-60 mph (s)": "18", |
| "year": "82" |
| }, |
| { |
| "name": "Pontiac Phoenix", |
| "economy (mpg)": "33.5", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "90", |
| "weight (lb)": "2556", |
| "0-60 mph (s)": "13.2", |
| "year": "79" |
| }, |
| { |
| "name": "Pontiac Safari (Wagon)", |
| "economy (mpg)": "13", |
| "cylinders": "8", |
| "displacement (cc)": "400", |
| "power (hp)": "175", |
| "weight (lb)": "5140", |
| "0-60 mph (s)": "12", |
| "year": "71" |
| }, |
| { |
| "name": "Pontiac Sunbird Coupe", |
| "economy (mpg)": "24.5", |
| "cylinders": "4", |
| "displacement (cc)": "151", |
| "power (hp)": "88", |
| "weight (lb)": "2740", |
| "0-60 mph (s)": "16", |
| "year": "77" |
| }, |
| { |
| "name": "Pontiac Ventura Sj", |
| "economy (mpg)": "18.5", |
| "cylinders": "6", |
| "displacement (cc)": "250", |
| "power (hp)": "110", |
| "weight (lb)": "3645", |
| "0-60 mph (s)": "16.2", |
| "year": "76" |
| }, |
| { |
| "name": "Renault 12 (Wagon)", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "96", |
| "power (hp)": "69", |
| "weight (lb)": "2189", |
| "0-60 mph (s)": "18", |
| "year": "72" |
| }, |
| { |
| "name": "Renault 12TL", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "101", |
| "power (hp)": "83", |
| "weight (lb)": "2202", |
| "0-60 mph (s)": "15.3", |
| "year": "76" |
| }, |
| { |
| "name": "Renault 18I", |
| "economy (mpg)": "34.5", |
| "cylinders": "4", |
| "displacement (cc)": "100", |
| "power (hp)": "", |
| "weight (lb)": "2320", |
| "0-60 mph (s)": "15.8", |
| "year": "81" |
| }, |
| { |
| "name": "Renault 5 Gtl", |
| "economy (mpg)": "36", |
| "cylinders": "4", |
| "displacement (cc)": "79", |
| "power (hp)": "58", |
| "weight (lb)": "1825", |
| "0-60 mph (s)": "18.6", |
| "year": "77" |
| }, |
| { |
| "name": "Renault Lecar Deluxe", |
| "economy (mpg)": "40.9", |
| "cylinders": "4", |
| "displacement (cc)": "85", |
| "power (hp)": "", |
| "weight (lb)": "1835", |
| "0-60 mph (s)": "17.3", |
| "year": "80" |
| }, |
| { |
| "name": "Saab 900S", |
| "economy (mpg)": "", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "110", |
| "weight (lb)": "2800", |
| "0-60 mph (s)": "15.4", |
| "year": "81" |
| }, |
| { |
| "name": "Saab 99E", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "104", |
| "power (hp)": "95", |
| "weight (lb)": "2375", |
| "0-60 mph (s)": "17.5", |
| "year": "70" |
| }, |
| { |
| "name": "Saab 99GLE", |
| "economy (mpg)": "21.6", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "115", |
| "weight (lb)": "2795", |
| "0-60 mph (s)": "15.7", |
| "year": "78" |
| }, |
| { |
| "name": "Saab 99LE", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "110", |
| "weight (lb)": "2660", |
| "0-60 mph (s)": "14", |
| "year": "73" |
| }, |
| { |
| "name": "Saab 99LE", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "115", |
| "weight (lb)": "2671", |
| "0-60 mph (s)": "13.5", |
| "year": "75" |
| }, |
| { |
| "name": "Subaru DL", |
| "economy (mpg)": "30", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "67", |
| "weight (lb)": "1985", |
| "0-60 mph (s)": "16.4", |
| "year": "77" |
| }, |
| { |
| "name": "Subaru DL", |
| "economy (mpg)": "33.8", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "67", |
| "weight (lb)": "2145", |
| "0-60 mph (s)": "18", |
| "year": "80" |
| }, |
| { |
| "name": "Subaru", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "108", |
| "power (hp)": "93", |
| "weight (lb)": "2391", |
| "0-60 mph (s)": "15.5", |
| "year": "74" |
| }, |
| { |
| "name": "Subaru", |
| "economy (mpg)": "32.3", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "67", |
| "weight (lb)": "2065", |
| "0-60 mph (s)": "17.8", |
| "year": "81" |
| }, |
| { |
| "name": "Toyota Carina", |
| "economy (mpg)": "20", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "88", |
| "weight (lb)": "2279", |
| "0-60 mph (s)": "19", |
| "year": "73" |
| }, |
| { |
| "name": "Toyota Celica GT Liftback", |
| "economy (mpg)": "21.1", |
| "cylinders": "4", |
| "displacement (cc)": "134", |
| "power (hp)": "95", |
| "weight (lb)": "2515", |
| "0-60 mph (s)": "14.8", |
| "year": "78" |
| }, |
| { |
| "name": "Toyota Celica GT", |
| "economy (mpg)": "32", |
| "cylinders": "4", |
| "displacement (cc)": "144", |
| "power (hp)": "96", |
| "weight (lb)": "2665", |
| "0-60 mph (s)": "13.9", |
| "year": "82" |
| }, |
| { |
| "name": "Toyota Corolla 1200", |
| "economy (mpg)": "31", |
| "cylinders": "4", |
| "displacement (cc)": "71", |
| "power (hp)": "65", |
| "weight (lb)": "1773", |
| "0-60 mph (s)": "19", |
| "year": "71" |
| }, |
| { |
| "name": "Toyota Corolla 1200", |
| "economy (mpg)": "32", |
| "cylinders": "4", |
| "displacement (cc)": "71", |
| "power (hp)": "65", |
| "weight (lb)": "1836", |
| "0-60 mph (s)": "21", |
| "year": "74" |
| }, |
| { |
| "name": "Toyota Corolla 1600 (Wagon)", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "88", |
| "weight (lb)": "2100", |
| "0-60 mph (s)": "16.5", |
| "year": "72" |
| }, |
| { |
| "name": "Toyota Corolla Liftback", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "75", |
| "weight (lb)": "2265", |
| "0-60 mph (s)": "18.2", |
| "year": "77" |
| }, |
| { |
| "name": "Toyota Corolla Tercel", |
| "economy (mpg)": "38.1", |
| "cylinders": "4", |
| "displacement (cc)": "89", |
| "power (hp)": "60", |
| "weight (lb)": "1968", |
| "0-60 mph (s)": "18.8", |
| "year": "80" |
| }, |
| { |
| "name": "Toyota Corolla", |
| "economy (mpg)": "28", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "75", |
| "weight (lb)": "2155", |
| "0-60 mph (s)": "16.4", |
| "year": "76" |
| }, |
| { |
| "name": "Toyota Corolla", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "75", |
| "weight (lb)": "2171", |
| "0-60 mph (s)": "16", |
| "year": "75" |
| }, |
| { |
| "name": "Toyota Corolla", |
| "economy (mpg)": "32.2", |
| "cylinders": "4", |
| "displacement (cc)": "108", |
| "power (hp)": "75", |
| "weight (lb)": "2265", |
| "0-60 mph (s)": "15.2", |
| "year": "80" |
| }, |
| { |
| "name": "Toyota Corolla", |
| "economy (mpg)": "32.4", |
| "cylinders": "4", |
| "displacement (cc)": "108", |
| "power (hp)": "75", |
| "weight (lb)": "2350", |
| "0-60 mph (s)": "16.8", |
| "year": "81" |
| }, |
| { |
| "name": "Toyota Corolla", |
| "economy (mpg)": "34", |
| "cylinders": "4", |
| "displacement (cc)": "108", |
| "power (hp)": "70", |
| "weight (lb)": "2245", |
| "0-60 mph (s)": "16.9", |
| "year": "82" |
| }, |
| { |
| "name": "Toyota Corona Hardtop", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "113", |
| "power (hp)": "95", |
| "weight (lb)": "2278", |
| "0-60 mph (s)": "15.5", |
| "year": "72" |
| }, |
| { |
| "name": "Toyota Corona Liftback", |
| "economy (mpg)": "29.8", |
| "cylinders": "4", |
| "displacement (cc)": "134", |
| "power (hp)": "90", |
| "weight (lb)": "2711", |
| "0-60 mph (s)": "15.5", |
| "year": "80" |
| }, |
| { |
| "name": "Toyota Corona Mark II", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "113", |
| "power (hp)": "95", |
| "weight (lb)": "2372", |
| "0-60 mph (s)": "15", |
| "year": "70" |
| }, |
| { |
| "name": "Toyota Corona", |
| "economy (mpg)": "24", |
| "cylinders": "4", |
| "displacement (cc)": "134", |
| "power (hp)": "96", |
| "weight (lb)": "2702", |
| "0-60 mph (s)": "13.5", |
| "year": "75" |
| }, |
| { |
| "name": "Toyota Corona", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "113", |
| "power (hp)": "95", |
| "weight (lb)": "2228", |
| "0-60 mph (s)": "14", |
| "year": "71" |
| }, |
| { |
| "name": "Toyota Corona", |
| "economy (mpg)": "27.5", |
| "cylinders": "4", |
| "displacement (cc)": "134", |
| "power (hp)": "95", |
| "weight (lb)": "2560", |
| "0-60 mph (s)": "14.2", |
| "year": "78" |
| }, |
| { |
| "name": "Toyota Corona", |
| "economy (mpg)": "31", |
| "cylinders": "4", |
| "displacement (cc)": "76", |
| "power (hp)": "52", |
| "weight (lb)": "1649", |
| "0-60 mph (s)": "16.5", |
| "year": "74" |
| }, |
| { |
| "name": "Toyota Cressida", |
| "economy (mpg)": "25.4", |
| "cylinders": "6", |
| "displacement (cc)": "168", |
| "power (hp)": "116", |
| "weight (lb)": "2900", |
| "0-60 mph (s)": "12.6", |
| "year": "81" |
| }, |
| { |
| "name": "Toyota Mark II", |
| "economy (mpg)": "19", |
| "cylinders": "6", |
| "displacement (cc)": "156", |
| "power (hp)": "108", |
| "weight (lb)": "2930", |
| "0-60 mph (s)": "15.5", |
| "year": "76" |
| }, |
| { |
| "name": "Toyota Mark II", |
| "economy (mpg)": "20", |
| "cylinders": "6", |
| "displacement (cc)": "156", |
| "power (hp)": "122", |
| "weight (lb)": "2807", |
| "0-60 mph (s)": "13.5", |
| "year": "73" |
| }, |
| { |
| "name": "Toyota Starlet", |
| "economy (mpg)": "39.1", |
| "cylinders": "4", |
| "displacement (cc)": "79", |
| "power (hp)": "58", |
| "weight (lb)": "1755", |
| "0-60 mph (s)": "16.9", |
| "year": "81" |
| }, |
| { |
| "name": "Toyota Tercel", |
| "economy (mpg)": "37.7", |
| "cylinders": "4", |
| "displacement (cc)": "89", |
| "power (hp)": "62", |
| "weight (lb)": "2050", |
| "0-60 mph (s)": "17.3", |
| "year": "81" |
| }, |
| { |
| "name": "Toyouta Corona Mark II (Wagon)", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "120", |
| "power (hp)": "97", |
| "weight (lb)": "2506", |
| "0-60 mph (s)": "14.5", |
| "year": "72" |
| }, |
| { |
| "name": "Triumph TR7 Coupe", |
| "economy (mpg)": "35", |
| "cylinders": "4", |
| "displacement (cc)": "122", |
| "power (hp)": "88", |
| "weight (lb)": "2500", |
| "0-60 mph (s)": "15.1", |
| "year": "80" |
| }, |
| { |
| "name": "Vokswagen Rabbit", |
| "economy (mpg)": "29.8", |
| "cylinders": "4", |
| "displacement (cc)": "89", |
| "power (hp)": "62", |
| "weight (lb)": "1845", |
| "0-60 mph (s)": "15.3", |
| "year": "80" |
| }, |
| { |
| "name": "Volkswagen 1131 Deluxe Sedan", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "46", |
| "weight (lb)": "1835", |
| "0-60 mph (s)": "20.5", |
| "year": "70" |
| }, |
| { |
| "name": "Volkswagen 411 (Wagon)", |
| "economy (mpg)": "22", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "76", |
| "weight (lb)": "2511", |
| "0-60 mph (s)": "18", |
| "year": "72" |
| }, |
| { |
| "name": "Volkswagen Dasher (Diesel)", |
| "economy (mpg)": "43.4", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "48", |
| "weight (lb)": "2335", |
| "0-60 mph (s)": "23.7", |
| "year": "80" |
| }, |
| { |
| "name": "Volkswagen Dasher", |
| "economy (mpg)": "25", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "71", |
| "weight (lb)": "2223", |
| "0-60 mph (s)": "16.5", |
| "year": "75" |
| }, |
| { |
| "name": "Volkswagen Dasher", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "79", |
| "power (hp)": "67", |
| "weight (lb)": "1963", |
| "0-60 mph (s)": "15.5", |
| "year": "74" |
| }, |
| { |
| "name": "Volkswagen Dasher", |
| "economy (mpg)": "30.5", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "78", |
| "weight (lb)": "2190", |
| "0-60 mph (s)": "14.1", |
| "year": "77" |
| }, |
| { |
| "name": "Volkswagen Jetta", |
| "economy (mpg)": "33", |
| "cylinders": "4", |
| "displacement (cc)": "105", |
| "power (hp)": "74", |
| "weight (lb)": "2190", |
| "0-60 mph (s)": "14.2", |
| "year": "81" |
| }, |
| { |
| "name": "Volkswagen Model 111", |
| "economy (mpg)": "27", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "60", |
| "weight (lb)": "1834", |
| "0-60 mph (s)": "19", |
| "year": "71" |
| }, |
| { |
| "name": "Volkswagen Pickup", |
| "economy (mpg)": "44", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "52", |
| "weight (lb)": "2130", |
| "0-60 mph (s)": "24.6", |
| "year": "82" |
| }, |
| { |
| "name": "Volkswagen Rabbit C (Diesel)", |
| "economy (mpg)": "44.3", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "48", |
| "weight (lb)": "2085", |
| "0-60 mph (s)": "21.7", |
| "year": "80" |
| }, |
| { |
| "name": "Volkswagen Rabbit Custom Diesel", |
| "economy (mpg)": "43.1", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "48", |
| "weight (lb)": "1985", |
| "0-60 mph (s)": "21.5", |
| "year": "78" |
| }, |
| { |
| "name": "Volkswagen Rabbit Custom", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "78", |
| "weight (lb)": "1940", |
| "0-60 mph (s)": "14.5", |
| "year": "77" |
| }, |
| { |
| "name": "Volkswagen Rabbit Custom", |
| "economy (mpg)": "31.9", |
| "cylinders": "4", |
| "displacement (cc)": "89", |
| "power (hp)": "71", |
| "weight (lb)": "1925", |
| "0-60 mph (s)": "14", |
| "year": "79" |
| }, |
| { |
| "name": "Volkswagen Rabbit L", |
| "economy (mpg)": "36", |
| "cylinders": "4", |
| "displacement (cc)": "105", |
| "power (hp)": "74", |
| "weight (lb)": "1980", |
| "0-60 mph (s)": "15.3", |
| "year": "82" |
| }, |
| { |
| "name": "Volkswagen Rabbit", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "70", |
| "weight (lb)": "1937", |
| "0-60 mph (s)": "14", |
| "year": "75" |
| }, |
| { |
| "name": "Volkswagen Rabbit", |
| "economy (mpg)": "29", |
| "cylinders": "4", |
| "displacement (cc)": "90", |
| "power (hp)": "70", |
| "weight (lb)": "1937", |
| "0-60 mph (s)": "14.2", |
| "year": "76" |
| }, |
| { |
| "name": "Volkswagen Rabbit", |
| "economy (mpg)": "29.5", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "71", |
| "weight (lb)": "1825", |
| "0-60 mph (s)": "12.2", |
| "year": "76" |
| }, |
| { |
| "name": "Volkswagen Rabbit", |
| "economy (mpg)": "41.5", |
| "cylinders": "4", |
| "displacement (cc)": "98", |
| "power (hp)": "76", |
| "weight (lb)": "2144", |
| "0-60 mph (s)": "14.7", |
| "year": "80" |
| }, |
| { |
| "name": "Volkswagen Scirocco", |
| "economy (mpg)": "31.5", |
| "cylinders": "4", |
| "displacement (cc)": "89", |
| "power (hp)": "71", |
| "weight (lb)": "1990", |
| "0-60 mph (s)": "14.9", |
| "year": "78" |
| }, |
| { |
| "name": "Volkswagen Super Beetle 117", |
| "economy (mpg)": "", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "48", |
| "weight (lb)": "1978", |
| "0-60 mph (s)": "20", |
| "year": "71" |
| }, |
| { |
| "name": "Volkswagen Super Beetle", |
| "economy (mpg)": "26", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "46", |
| "weight (lb)": "1950", |
| "0-60 mph (s)": "21", |
| "year": "73" |
| }, |
| { |
| "name": "Volkswagen Type 3", |
| "economy (mpg)": "23", |
| "cylinders": "4", |
| "displacement (cc)": "97", |
| "power (hp)": "54", |
| "weight (lb)": "2254", |
| "0-60 mph (s)": "23.5", |
| "year": "72" |
| }, |
| { |
| "name": "Volvo 144EA", |
| "economy (mpg)": "19", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "112", |
| "weight (lb)": "2868", |
| "0-60 mph (s)": "15.5", |
| "year": "73" |
| }, |
| { |
| "name": "Volvo 145E (Wagon)", |
| "economy (mpg)": "18", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "112", |
| "weight (lb)": "2933", |
| "0-60 mph (s)": "14.5", |
| "year": "72" |
| }, |
| { |
| "name": "Volvo 244DL", |
| "economy (mpg)": "22", |
| "cylinders": "4", |
| "displacement (cc)": "121", |
| "power (hp)": "98", |
| "weight (lb)": "2945", |
| "0-60 mph (s)": "14.5", |
| "year": "75" |
| }, |
| { |
| "name": "Volvo 245", |
| "economy (mpg)": "20", |
| "cylinders": "4", |
| "displacement (cc)": "130", |
| "power (hp)": "102", |
| "weight (lb)": "3150", |
| "0-60 mph (s)": "15.7", |
| "year": "76" |
| }, |
| { |
| "name": "Volvo 264GL", |
| "economy (mpg)": "17", |
| "cylinders": "6", |
| "displacement (cc)": "163", |
| "power (hp)": "125", |
| "weight (lb)": "3140", |
| "0-60 mph (s)": "13.6", |
| "year": "78" |
| }, |
| { |
| "name": "Volvo Diesel", |
| "economy (mpg)": "30.7", |
| "cylinders": "6", |
| "displacement (cc)": "145", |
| "power (hp)": "76", |
| "weight (lb)": "3160", |
| "0-60 mph (s)": "19.6", |
| "year": "81" |
| } |
| ] |
| } |
| |
| </script> |
| </body> |
| </html> |