earth 0.11.20 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (157) hide show
  1. data/data/automobile/annual_emission_controls.csv +143 -0
  2. data/data/automobile/annual_fuel_consumption.csv +81 -0
  3. data/data/automobile/annual_sizes.csv +541 -0
  4. data/data/automobile/auto_fuel_data.csv +13 -0
  5. data/data/automobile/auto_fuel_efs.csv +9 -0
  6. data/data/automobile/cafe_data.csv +1449 -0
  7. data/data/automobile/emission_control_techs.csv +21 -0
  8. data/data/automobile/hfc_emissions.csv +31 -0
  9. data/data/automobile/hybridity_multipliers.csv +8 -0
  10. data/data/automobile/sizes.csv +16 -0
  11. data/earth.gemspec +3 -2
  12. data/errata/aircraft/faa_errata.csv +1 -1
  13. data/errata/airline/bts_carrier_codes_errata.csv +44 -0
  14. data/errata/airport/openflights_errata.csv +450 -1
  15. data/errata/automobile_make_model_year_variant/feg_errata.csv +363 -1
  16. data/errata/automobile_make_year_fleet/cafe_errata.csv +69 -1
  17. data/errata/bts_aircraft/bts_errata.csv +1 -1
  18. data/errata/country/wri_errata.csv +1 -1
  19. data/errata/electricity/electric_market/nrel_errata.csv +13 -1
  20. data/errata/electricity/electric_utility/eia_errata.csv +18 -1
  21. data/errata/flight_segment/bts_errata.csv +4 -1
  22. data/lib/earth.rb +1 -0
  23. data/lib/earth/acronyms.rb +12 -0
  24. data/lib/earth/air/aircraft.rb +16 -0
  25. data/lib/earth/air/airline.rb +3 -0
  26. data/lib/earth/air/airline/data_miner.rb +18 -3
  27. data/lib/earth/air/airport.rb +2 -0
  28. data/lib/earth/air/bts_aircraft.rb +2 -0
  29. data/lib/earth/air/flight_distance_class.rb +2 -0
  30. data/lib/earth/air/flight_distance_class_seat_class.rb +2 -0
  31. data/lib/earth/air/flight_seat_class.rb +2 -0
  32. data/lib/earth/air/flight_segment.rb +10 -0
  33. data/lib/earth/air/flight_segment/data_miner.rb +10 -13
  34. data/lib/earth/automobile/automobile_activity_year.rb +21 -0
  35. data/lib/earth/automobile/automobile_activity_year/data_miner.rb +27 -0
  36. data/lib/earth/automobile/automobile_activity_year_type.rb +27 -0
  37. data/lib/earth/automobile/automobile_activity_year_type/data_miner.rb +27 -0
  38. data/lib/earth/automobile/automobile_activity_year_type_fuel.rb +19 -0
  39. data/lib/earth/automobile/automobile_activity_year_type_fuel/data_miner.rb +57 -0
  40. data/lib/earth/automobile/automobile_fuel.rb +93 -86
  41. data/lib/earth/automobile/automobile_fuel/data_miner.rb +64 -70
  42. data/lib/earth/automobile/automobile_make.rb +5 -1
  43. data/lib/earth/automobile/automobile_make/data_miner.rb +10 -37
  44. data/lib/earth/automobile/automobile_make_model.rb +22 -3
  45. data/lib/earth/automobile/automobile_make_model/data_miner.rb +41 -15
  46. data/lib/earth/automobile/automobile_make_model_year.rb +18 -7
  47. data/lib/earth/automobile/automobile_make_model_year/data_miner.rb +43 -27
  48. data/lib/earth/automobile/automobile_make_model_year_variant.rb +44 -8
  49. data/lib/earth/automobile/automobile_make_model_year_variant/data_miner.rb +182 -8
  50. data/lib/earth/automobile/automobile_make_year.rb +4 -2
  51. data/lib/earth/automobile/automobile_make_year/data_miner.rb +16 -15
  52. data/lib/earth/automobile/automobile_make_year_fleet.rb +2 -1
  53. data/lib/earth/automobile/automobile_make_year_fleet/data_miner.rb +5 -2
  54. data/lib/earth/automobile/automobile_model.rb +2 -1
  55. data/lib/earth/automobile/automobile_model/data_miner.rb +1 -2
  56. data/lib/earth/automobile/automobile_size_class.rb +7 -68
  57. data/lib/earth/automobile/automobile_size_class/data_miner.rb +16 -51
  58. data/lib/earth/automobile/automobile_type_fuel.rb +23 -0
  59. data/lib/earth/automobile/automobile_type_fuel/data_miner.rb +52 -0
  60. data/lib/earth/automobile/automobile_type_fuel_control.rb +2 -33
  61. data/lib/earth/automobile/automobile_type_fuel_control/data_miner.rb +19 -4
  62. data/lib/earth/automobile/automobile_type_fuel_year.rb +17 -54
  63. data/lib/earth/automobile/automobile_type_fuel_year/data_miner.rb +40 -94
  64. data/lib/earth/automobile/automobile_type_fuel_year_control.rb +25 -23
  65. data/lib/earth/automobile/automobile_type_fuel_year_control/data_miner.rb +6 -2
  66. data/lib/earth/automobile/automobile_year.rb +38 -1
  67. data/lib/earth/automobile/automobile_year/data_miner.rb +1 -2
  68. data/lib/earth/automobile/dependencies.txt +22 -36
  69. data/lib/earth/bus/bus_class.rb +2 -0
  70. data/lib/earth/bus/bus_fuel.rb +2 -0
  71. data/lib/earth/bus/bus_fuel_control.rb +2 -0
  72. data/lib/earth/bus/bus_fuel_year_control.rb +2 -0
  73. data/lib/earth/computation/computation_carrier.rb +2 -0
  74. data/lib/earth/computation/computation_carrier_instance_class.rb +2 -0
  75. data/lib/earth/computation/computation_carrier_region.rb +2 -0
  76. data/lib/earth/conversions_ext.rb +6 -0
  77. data/lib/earth/diet/diet_class.rb +2 -0
  78. data/lib/earth/diet/food_group.rb +2 -0
  79. data/lib/earth/fuel/fuel.rb +2 -0
  80. data/lib/earth/fuel/fuel/data_miner.rb +15 -0
  81. data/lib/earth/fuel/fuel_price.rb +2 -0
  82. data/lib/earth/fuel/fuel_type.rb +2 -0
  83. data/lib/earth/fuel/fuel_year.rb +2 -0
  84. data/lib/earth/fuel/greenhouse_gas.rb +2 -0
  85. data/lib/earth/hospitality/commercial_building_energy_consumption_survey_response/data_miner.rb +7 -7
  86. data/lib/earth/hospitality/lodging_class.rb +2 -0
  87. data/lib/earth/industry/industry.rb +2 -0
  88. data/lib/earth/industry/mecs_energy/data_miner.rb +1 -1
  89. data/lib/earth/industry/mecs_ratio/data_miner.rb +1 -1
  90. data/lib/earth/locality/census_division.rb +2 -0
  91. data/lib/earth/locality/census_region.rb +2 -0
  92. data/lib/earth/locality/climate_division.rb +2 -0
  93. data/lib/earth/locality/country.rb +4 -0
  94. data/lib/earth/locality/egrid_region.rb +3 -0
  95. data/lib/earth/locality/egrid_subregion.rb +2 -0
  96. data/lib/earth/locality/petroleum_administration_for_defense_district.rb +7 -0
  97. data/lib/earth/locality/state.rb +7 -0
  98. data/lib/earth/locality/zip_code.rb +4 -0
  99. data/lib/earth/pet/breed.rb +7 -0
  100. data/lib/earth/pet/breed/data_miner.rb +1 -1
  101. data/lib/earth/pet/breed_gender.rb +2 -0
  102. data/lib/earth/pet/gender.rb +2 -0
  103. data/lib/earth/pet/species.rb +2 -0
  104. data/lib/earth/rail/country_rail_class.rb +2 -0
  105. data/lib/earth/rail/country_rail_traction.rb +2 -0
  106. data/lib/earth/rail/country_rail_traction_class.rb +2 -0
  107. data/lib/earth/rail/national_transit_database_company.rb +7 -0
  108. data/lib/earth/rail/national_transit_database_mode.rb +2 -0
  109. data/lib/earth/rail/national_transit_database_record.rb +22 -0
  110. data/lib/earth/rail/rail_class.rb +2 -0
  111. data/lib/earth/rail/rail_company.rb +16 -0
  112. data/lib/earth/rail/rail_fuel.rb +2 -0
  113. data/lib/earth/rail/rail_traction.rb +2 -0
  114. data/lib/earth/residence/air_conditioner_use.rb +2 -0
  115. data/lib/earth/residence/clothes_machine_use.rb +2 -0
  116. data/lib/earth/residence/dishwasher_use.rb +2 -0
  117. data/lib/earth/residence/residence_appliance.rb +2 -0
  118. data/lib/earth/residence/residence_class.rb +2 -0
  119. data/lib/earth/residence/residence_fuel_price.rb +2 -0
  120. data/lib/earth/residence/residence_fuel_type.rb +2 -0
  121. data/lib/earth/residence/residential_energy_consumption_survey_response.rb +2 -0
  122. data/lib/earth/residence/urbanity.rb +2 -0
  123. data/lib/earth/shipping/carrier.rb +2 -0
  124. data/lib/earth/shipping/carrier_mode.rb +2 -0
  125. data/lib/earth/shipping/shipment_mode.rb +2 -0
  126. data/lib/earth/version.rb +1 -1
  127. data/spec/earth/air/airline_spec.rb +20 -0
  128. data/spec/earth/air/flight_segment_spec.rb +9 -4
  129. data/spec/earth/automobile/automobile_activity_year_spec.rb +30 -0
  130. data/spec/earth/automobile/automobile_activity_year_type_fuel_spec.rb +25 -0
  131. data/spec/earth/automobile/automobile_activity_year_type_spec.rb +38 -0
  132. data/spec/earth/automobile/automobile_fuel_spec.rb +91 -6
  133. data/spec/earth/automobile/automobile_make_model_spec.rb +74 -0
  134. data/spec/earth/automobile/automobile_make_model_year_spec.rb +90 -0
  135. data/spec/earth/automobile/automobile_make_model_year_variant_spec.rb +139 -90
  136. data/spec/earth/automobile/automobile_make_spec.rb +27 -0
  137. data/spec/earth/automobile/automobile_make_year_fleet_spec.rb +8 -21
  138. data/spec/earth/automobile/automobile_make_year_spec.rb +28 -0
  139. data/spec/earth/automobile/automobile_model_spec.rb +15 -0
  140. data/spec/earth/automobile/automobile_size_class_spec.rb +31 -0
  141. data/spec/earth/automobile/automobile_type_fuel_control_spec.rb +25 -0
  142. data/spec/earth/automobile/automobile_type_fuel_spec.rb +45 -0
  143. data/spec/earth/automobile/automobile_type_fuel_year_control_spec.rb +51 -0
  144. data/spec/earth/automobile/automobile_type_fuel_year_spec.rb +65 -0
  145. data/spec/earth/automobile/automobile_year_spec.rb +23 -0
  146. data/spec/earth/fuel/fuel_spec.rb +1 -1
  147. data/spec/earth/hospitality/commercial_building_energy_consumption_survey_response_spec.rb +11 -3
  148. data/spec/earth_spec.rb +3 -3
  149. data/spec/spec_helper.rb +1 -0
  150. metadata +78 -25
  151. data/lib/earth/automobile/automobile_size_class_year.rb +0 -44
  152. data/lib/earth/automobile/automobile_size_class_year/data_miner.rb +0 -18
  153. data/lib/earth/automobile/automobile_type_fuel_year_age.rb +0 -68
  154. data/lib/earth/automobile/automobile_type_fuel_year_age/data_miner.rb +0 -116
  155. data/lib/earth/automobile/automobile_type_year.rb +0 -58
  156. data/lib/earth/automobile/automobile_type_year/data_miner.rb +0 -30
  157. data/spec/earth/automobile/automobile_type_fuel_year_age_spec.rb +0 -20
@@ -0,0 +1,143 @@
1
+ name,type_name,fuel_common_name,year,control_name,total_travel_percent,source,source_detail,source_url
2
+ Light-duty trucks diesel 1985 moderate,Light-duty trucks,diesel,1985,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
3
+ Light-duty trucks diesel 1986 moderate,Light-duty trucks,diesel,1986,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
4
+ Light-duty trucks diesel 1987 moderate,Light-duty trucks,diesel,1987,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
5
+ Light-duty trucks diesel 1988 moderate,Light-duty trucks,diesel,1988,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
6
+ Light-duty trucks diesel 1989 moderate,Light-duty trucks,diesel,1989,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
7
+ Light-duty trucks diesel 1990 moderate,Light-duty trucks,diesel,1990,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
8
+ Light-duty trucks diesel 1991 moderate,Light-duty trucks,diesel,1991,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
9
+ Light-duty trucks diesel 1992 moderate,Light-duty trucks,diesel,1992,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
10
+ Light-duty trucks diesel 1993 moderate,Light-duty trucks,diesel,1993,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
11
+ Light-duty trucks diesel 1994 moderate,Light-duty trucks,diesel,1994,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
12
+ Light-duty trucks diesel 1995 moderate,Light-duty trucks,diesel,1995,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
13
+ Light-duty trucks diesel 1996 advanced,Light-duty trucks,diesel,1996,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
14
+ Light-duty trucks diesel 1997 advanced,Light-duty trucks,diesel,1997,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
15
+ Light-duty trucks diesel 1998 advanced,Light-duty trucks,diesel,1998,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
16
+ Light-duty trucks diesel 1999 advanced,Light-duty trucks,diesel,1999,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
17
+ Light-duty trucks diesel 2000 advanced,Light-duty trucks,diesel,2000,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
18
+ Light-duty trucks diesel 2001 advanced,Light-duty trucks,diesel,2001,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
19
+ Light-duty trucks diesel 2002 advanced,Light-duty trucks,diesel,2002,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
20
+ Light-duty trucks diesel 2003 advanced,Light-duty trucks,diesel,2003,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
21
+ Light-duty trucks diesel 2004 advanced,Light-duty trucks,diesel,2004,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
22
+ Light-duty trucks diesel 2005 advanced,Light-duty trucks,diesel,2005,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
23
+ Light-duty trucks diesel 2006 advanced,Light-duty trucks,diesel,2006,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
24
+ Light-duty trucks diesel 2007 advanced,Light-duty trucks,diesel,2007,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
25
+ Light-duty trucks diesel 2008 advanced,Light-duty trucks,diesel,2008,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
26
+ Light-duty trucks diesel 2009 advanced,Light-duty trucks,diesel,2009,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
27
+ Light-duty trucks diesel 2010 advanced,Light-duty trucks,diesel,2010,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
28
+ Light-duty trucks gasoline 1985 oxidation catalyst,Light-duty trucks,gasoline,1985,oxidation catalyst,0.6,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
29
+ Light-duty trucks gasoline 1985 epa tier 0,Light-duty trucks,gasoline,1985,epa tier 0,0.4,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
30
+ Light-duty trucks gasoline 1986 oxidation catalyst,Light-duty trucks,gasoline,1986,oxidation catalyst,0.5,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
31
+ Light-duty trucks gasoline 1986 epa tier 0,Light-duty trucks,gasoline,1986,epa tier 0,0.5,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
32
+ Light-duty trucks gasoline 1987 oxidation catalyst,Light-duty trucks,gasoline,1987,oxidation catalyst,0.05,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
33
+ Light-duty trucks gasoline 1987 epa tier 0,Light-duty trucks,gasoline,1987,epa tier 0,0.95,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
34
+ Light-duty trucks gasoline 1988 oxidation catalyst,Light-duty trucks,gasoline,1988,oxidation catalyst,0.05,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
35
+ Light-duty trucks gasoline 1988 epa tier 0,Light-duty trucks,gasoline,1988,epa tier 0,0.95,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
36
+ Light-duty trucks gasoline 1989 oxidation catalyst,Light-duty trucks,gasoline,1989,oxidation catalyst,0.05,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
37
+ Light-duty trucks gasoline 1989 epa tier 0,Light-duty trucks,gasoline,1989,epa tier 0,0.95,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
38
+ Light-duty trucks gasoline 1990 epa tier 0,Light-duty trucks,gasoline,1990,epa tier 0,0.95,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
39
+ Light-duty trucks gasoline 1990 oxidation catalyst,Light-duty trucks,gasoline,1990,oxidation catalyst,0.05,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
40
+ Light-duty trucks gasoline 1991 epa tier 0,Light-duty trucks,gasoline,1991,epa tier 0,0.95,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
41
+ Light-duty trucks gasoline 1991 oxidation catalyst,Light-duty trucks,gasoline,1991,oxidation catalyst,0.05,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
42
+ Light-duty trucks gasoline 1992 epa tier 0,Light-duty trucks,gasoline,1992,epa tier 0,0.95,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
43
+ Light-duty trucks gasoline 1992 oxidation catalyst,Light-duty trucks,gasoline,1992,oxidation catalyst,0.05,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
44
+ Light-duty trucks gasoline 1993 epa tier 0,Light-duty trucks,gasoline,1993,epa tier 0,0.95,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
45
+ Light-duty trucks gasoline 1993 oxidation catalyst,Light-duty trucks,gasoline,1993,oxidation catalyst,0.05,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
46
+ Light-duty trucks gasoline 1994 epa tier 0,Light-duty trucks,gasoline,1994,epa tier 0,0.6,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
47
+ Light-duty trucks gasoline 1994 epa tier 1,Light-duty trucks,gasoline,1994,epa tier 1,0.4,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
48
+ Light-duty trucks gasoline 1995 epa tier 0,Light-duty trucks,gasoline,1995,epa tier 0,0.2,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
49
+ Light-duty trucks gasoline 1995 epa tier 1,Light-duty trucks,gasoline,1995,epa tier 1,0.8,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
50
+ Light-duty trucks gasoline 1996 epa tier 1,Light-duty trucks,gasoline,1996,epa tier 1,1,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
51
+ Light-duty trucks gasoline 1997 epa tier 1,Light-duty trucks,gasoline,1997,epa tier 1,1,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
52
+ Light-duty trucks gasoline 1998 epa tier 1,Light-duty trucks,gasoline,1998,epa tier 1,0.8,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
53
+ Light-duty trucks gasoline 1998 low emission vehicles,Light-duty trucks,gasoline,1998,low emission vehicles,0.2,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
54
+ Light-duty trucks gasoline 1999 epa tier 1,Light-duty trucks,gasoline,1999,epa tier 1,0.57,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
55
+ Light-duty trucks gasoline 1999 low emission vehicles,Light-duty trucks,gasoline,1999,low emission vehicles,0.43,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
56
+ Light-duty trucks gasoline 2000 epa tier 1,Light-duty trucks,gasoline,2000,epa tier 1,0.65,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
57
+ Light-duty trucks gasoline 2000 low emission vehicles,Light-duty trucks,gasoline,2000,low emission vehicles,0.35,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
58
+ Light-duty trucks gasoline 2001 epa tier 1,Light-duty trucks,gasoline,2001,epa tier 1,0.01,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
59
+ Light-duty trucks gasoline 2001 low emission vehicles,Light-duty trucks,gasoline,2001,low emission vehicles,0.99,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
60
+ Light-duty trucks gasoline 2002 epa tier 1,Light-duty trucks,gasoline,2002,epa tier 1,0.1,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
61
+ Light-duty trucks gasoline 2002 low emission vehicles,Light-duty trucks,gasoline,2002,low emission vehicles,0.9,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
62
+ Light-duty trucks gasoline 2003 epa tier 2,Light-duty trucks,gasoline,2003,epa tier 2,0.47,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
63
+ Light-duty trucks gasoline 2003 low emission vehicles,Light-duty trucks,gasoline,2003,low emission vehicles,0.53,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
64
+ Light-duty trucks gasoline 2004 epa tier 2,Light-duty trucks,gasoline,2004,epa tier 2,0.28,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
65
+ Light-duty trucks gasoline 2004 low emission vehicles,Light-duty trucks,gasoline,2004,low emission vehicles,0.72,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
66
+ Light-duty trucks gasoline 2005 epa tier 2,Light-duty trucks,gasoline,2005,epa tier 2,0.62,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
67
+ Light-duty trucks gasoline 2005 low emission vehicles,Light-duty trucks,gasoline,2005,low emission vehicles,0.38,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
68
+ Light-duty trucks gasoline 2006 epa tier 2,Light-duty trucks,gasoline,2006,epa tier 2,0.75,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
69
+ Light-duty trucks gasoline 2006 low emission vehicles,Light-duty trucks,gasoline,2006,low emission vehicles,0.25,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
70
+ Light-duty trucks gasoline 2007 epa tier 2,Light-duty trucks,gasoline,2007,epa tier 2,0.86,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
71
+ Light-duty trucks gasoline 2007 low emission vehicles,Light-duty trucks,gasoline,2007,low emission vehicles,0.14,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
72
+ Light-duty trucks gasoline 2008 epa tier 2,Light-duty trucks,gasoline,2008,epa tier 2,1,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
73
+ Light-duty trucks gasoline 2009 epa tier 2,Light-duty trucks,gasoline,2009,epa tier 2,1,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
74
+ Light-duty trucks gasoline 2010 epa tier 2,Light-duty trucks,gasoline,2010,epa tier 2,1,EPA (2012) Table A-100,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
75
+ Passenger cars diesel 1985 moderate,Passenger cars,diesel,1985,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
76
+ Passenger cars diesel 1986 moderate,Passenger cars,diesel,1986,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
77
+ Passenger cars diesel 1987 moderate,Passenger cars,diesel,1987,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
78
+ Passenger cars diesel 1988 moderate,Passenger cars,diesel,1988,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
79
+ Passenger cars diesel 1989 moderate,Passenger cars,diesel,1989,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
80
+ Passenger cars diesel 1990 moderate,Passenger cars,diesel,1990,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
81
+ Passenger cars diesel 1991 moderate,Passenger cars,diesel,1991,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
82
+ Passenger cars diesel 1992 moderate,Passenger cars,diesel,1992,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
83
+ Passenger cars diesel 1993 moderate,Passenger cars,diesel,1993,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
84
+ Passenger cars diesel 1994 moderate,Passenger cars,diesel,1994,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
85
+ Passenger cars diesel 1995 moderate,Passenger cars,diesel,1995,moderate,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
86
+ Passenger cars diesel 1996 advanced,Passenger cars,diesel,1996,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
87
+ Passenger cars diesel 1997 advanced,Passenger cars,diesel,1997,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
88
+ Passenger cars diesel 1998 advanced,Passenger cars,diesel,1998,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
89
+ Passenger cars diesel 1999 advanced,Passenger cars,diesel,1999,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
90
+ Passenger cars diesel 2000 advanced,Passenger cars,diesel,2000,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
91
+ Passenger cars diesel 2001 advanced,Passenger cars,diesel,2001,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
92
+ Passenger cars diesel 2002 advanced,Passenger cars,diesel,2002,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
93
+ Passenger cars diesel 2003 advanced,Passenger cars,diesel,2003,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
94
+ Passenger cars diesel 2004 advanced,Passenger cars,diesel,2004,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
95
+ Passenger cars diesel 2005 advanced,Passenger cars,diesel,2005,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
96
+ Passenger cars diesel 2006 advanced,Passenger cars,diesel,2006,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
97
+ Passenger cars diesel 2007 advanced,Passenger cars,diesel,2007,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
98
+ Passenger cars diesel 2008 advanced,Passenger cars,diesel,2008,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
99
+ Passenger cars diesel 2009 advanced,Passenger cars,diesel,2009,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
100
+ Passenger cars diesel 2010 advanced,Passenger cars,diesel,2010,advanced,1,EPA (2012) Table A-102,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
101
+ Passenger cars gasoline 1985 epa tier 0,Passenger cars,gasoline,1985,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
102
+ Passenger cars gasoline 1986 epa tier 0,Passenger cars,gasoline,1986,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
103
+ Passenger cars gasoline 1987 epa tier 0,Passenger cars,gasoline,1987,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
104
+ Passenger cars gasoline 1988 epa tier 0,Passenger cars,gasoline,1988,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
105
+ Passenger cars gasoline 1989 epa tier 0,Passenger cars,gasoline,1989,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
106
+ Passenger cars gasoline 1990 epa tier 0,Passenger cars,gasoline,1990,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
107
+ Passenger cars gasoline 1991 epa tier 0,Passenger cars,gasoline,1991,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
108
+ Passenger cars gasoline 1992 epa tier 0,Passenger cars,gasoline,1992,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
109
+ Passenger cars gasoline 1993 epa tier 0,Passenger cars,gasoline,1993,epa tier 0,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
110
+ Passenger cars gasoline 1994 epa tier 0,Passenger cars,gasoline,1994,epa tier 0,0.6,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
111
+ Passenger cars gasoline 1994 epa tier 1,Passenger cars,gasoline,1994,epa tier 1,0.4,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
112
+ Passenger cars gasoline 1995 epa tier 0,Passenger cars,gasoline,1995,epa tier 0,0.2,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
113
+ Passenger cars gasoline 1995 epa tier 1,Passenger cars,gasoline,1995,epa tier 1,0.8,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
114
+ Passenger cars gasoline 1996 epa tier 0,Passenger cars,gasoline,1996,epa tier 0,0.01,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
115
+ Passenger cars gasoline 1996 epa tier 1,Passenger cars,gasoline,1996,epa tier 1,0.97,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
116
+ Passenger cars gasoline 1996 low emission vehicles,Passenger cars,gasoline,1996,low emission vehicles,0.02,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
117
+ Passenger cars gasoline 1997 epa tier 0,Passenger cars,gasoline,1997,epa tier 0,0.005,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
118
+ Passenger cars gasoline 1997 epa tier 1,Passenger cars,gasoline,1997,epa tier 1,0.965,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
119
+ Passenger cars gasoline 1997 low emission vehicles,Passenger cars,gasoline,1997,low emission vehicles,0.03,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
120
+ Passenger cars gasoline 1998 epa tier 1,Passenger cars,gasoline,1998,epa tier 1,0.87,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
121
+ Passenger cars gasoline 1998 low emission vehicles,Passenger cars,gasoline,1998,low emission vehicles,0.13,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
122
+ Passenger cars gasoline 1999 epa tier 1,Passenger cars,gasoline,1999,epa tier 1,0.67,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
123
+ Passenger cars gasoline 1999 low emission vehicles,Passenger cars,gasoline,1999,low emission vehicles,0.33,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
124
+ Passenger cars gasoline 2000 epa tier 1,Passenger cars,gasoline,2000,epa tier 1,0.44,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
125
+ Passenger cars gasoline 2000 low emission vehicles,Passenger cars,gasoline,2000,low emission vehicles,0.56,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
126
+ Passenger cars gasoline 2001 epa tier 1,Passenger cars,gasoline,2001,epa tier 1,0.03,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
127
+ Passenger cars gasoline 2001 low emission vehicles,Passenger cars,gasoline,2001,low emission vehicles,0.97,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
128
+ Passenger cars gasoline 2002 epa tier 1,Passenger cars,gasoline,2002,epa tier 1,0.01,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
129
+ Passenger cars gasoline 2002 low emission vehicles,Passenger cars,gasoline,2002,low emission vehicles,0.99,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
130
+ Passenger cars gasoline 2003 epa tier 2,Passenger cars,gasoline,2003,epa tier 2,0.13,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
131
+ Passenger cars gasoline 2003 low emission vehicles,Passenger cars,gasoline,2003,low emission vehicles,0.87,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
132
+ Passenger cars gasoline 2004 epa tier 2,Passenger cars,gasoline,2004,epa tier 2,0.59,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
133
+ Passenger cars gasoline 2004 low emission vehicles,Passenger cars,gasoline,2004,low emission vehicles,0.41,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
134
+ Passenger cars gasoline 2005 epa tier 2,Passenger cars,gasoline,2005,epa tier 2,0.62,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
135
+ Passenger cars gasoline 2005 low emission vehicles,Passenger cars,gasoline,2005,low emission vehicles,0.38,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
136
+ Passenger cars gasoline 2006 epa tier 2,Passenger cars,gasoline,2006,epa tier 2,0.82,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
137
+ Passenger cars gasoline 2006 low emission vehicles,Passenger cars,gasoline,2006,low emission vehicles,0.18,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
138
+ Passenger cars gasoline 2007 epa tier 2,Passenger cars,gasoline,2007,epa tier 2,0.96,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
139
+ Passenger cars gasoline 2007 low emission vehicles,Passenger cars,gasoline,2007,low emission vehicles,0.04,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
140
+ Passenger cars gasoline 2008 epa tier 2,Passenger cars,gasoline,2008,epa tier 2,0.98,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
141
+ Passenger cars gasoline 2008 low emission vehicles,Passenger cars,gasoline,2008,low emission vehicles,0.02,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
142
+ Passenger cars gasoline 2009 low emission vehicles,Passenger cars,gasoline,2009,low emission vehicles,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
143
+ Passenger cars gasoline 2010 low emission vehicles,Passenger cars,gasoline,2010,low emission vehicles,1,EPA (2012) Table A-99,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
@@ -0,0 +1,81 @@
1
+ name,activity_year,type_name,fuel_common_name,fuel_consumption,fuel_consumption_units,source,source_detail,source_url
2
+ 1990 Light-duty trucks diesel,1990,Light-duty trucks,diesel,1118.5,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
3
+ 1991 Light-duty trucks diesel,1991,Light-duty trucks,diesel,1107.8,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
4
+ 1992 Light-duty trucks diesel,1992,Light-duty trucks,diesel,1224.7,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
5
+ 1993 Light-duty trucks diesel,1993,Light-duty trucks,diesel,1317.3,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
6
+ 1994 Light-duty trucks diesel,1994,Light-duty trucks,diesel,1365.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
7
+ 1995 Light-duty trucks diesel,1995,Light-duty trucks,diesel,1452,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
8
+ 1996 Light-duty trucks diesel,1996,Light-duty trucks,diesel,1528.6,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
9
+ 1997 Light-duty trucks diesel,1997,Light-duty trucks,diesel,1586.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
10
+ 1998 Light-duty trucks diesel,1998,Light-duty trucks,diesel,1682.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
11
+ 1999 Light-duty trucks diesel,1999,Light-duty trucks,diesel,1847.1,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
12
+ 2000 Light-duty trucks diesel,2000,Light-duty trucks,diesel,1960.6,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
13
+ 2001 Light-duty trucks diesel,2001,Light-duty trucks,diesel,2028.9,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
14
+ 2002 Light-duty trucks diesel,2002,Light-duty trucks,diesel,2133.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
15
+ 2003 Light-duty trucks diesel,2003,Light-duty trucks,diesel,2652,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
16
+ 2004 Light-duty trucks diesel,2004,Light-duty trucks,diesel,2821.9,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
17
+ 2005 Light-duty trucks diesel,2005,Light-duty trucks,diesel,2518.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
18
+ 2006 Light-duty trucks diesel,2006,Light-duty trucks,diesel,2609.9,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
19
+ 2007 Light-duty trucks diesel,2007,Light-duty trucks,diesel,1326,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
20
+ 2008 Light-duty trucks diesel,2008,Light-duty trucks,diesel,1182,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
21
+ 2009 Light-duty trucks diesel,2009,Light-duty trucks,diesel,1181,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
22
+ 1990 Light-duty trucks gasoline,1990,Light-duty trucks,gasoline,34698,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
23
+ 1991 Light-duty trucks gasoline,1991,Light-duty trucks,gasoline,37658.5,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
24
+ 1992 Light-duty trucks gasoline,1992,Light-duty trucks,gasoline,40137.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
25
+ 1993 Light-duty trucks gasoline,1993,Light-duty trucks,gasoline,41732.8,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
26
+ 1994 Light-duty trucks gasoline,1994,Light-duty trucks,gasoline,42789.6,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
27
+ 1995 Light-duty trucks gasoline,1995,Light-duty trucks,gasoline,44362.5,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
28
+ 1996 Light-duty trucks gasoline,1996,Light-duty trucks,gasoline,45949.3,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
29
+ 1997 Light-duty trucks gasoline,1997,Light-duty trucks,gasoline,47521.1,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
30
+ 1998 Light-duty trucks gasoline,1998,Light-duty trucks,gasoline,48661.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
31
+ 1999 Light-duty trucks gasoline,1999,Light-duty trucks,gasoline,50893.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
32
+ 2000 Light-duty trucks gasoline,2000,Light-duty trucks,gasoline,50765.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
33
+ 2001 Light-duty trucks gasoline,2001,Light-duty trucks,gasoline,51252,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
34
+ 2002 Light-duty trucks gasoline,2002,Light-duty trucks,gasoline,52442,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
35
+ 2003 Light-duty trucks gasoline,2003,Light-duty trucks,gasoline,55951,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
36
+ 2004 Light-duty trucks gasoline,2004,Light-duty trucks,gasoline,58118,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
37
+ 2005 Light-duty trucks gasoline,2005,Light-duty trucks,gasoline,54274,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
38
+ 2006 Light-duty trucks gasoline,2006,Light-duty trucks,gasoline,55460,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
39
+ 2007 Light-duty trucks gasoline,2007,Light-duty trucks,gasoline,35401,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
40
+ 2008 Light-duty trucks gasoline,2008,Light-duty trucks,gasoline,33723,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
41
+ 2009 Light-duty trucks gasoline,2009,Light-duty trucks,gasoline,34311,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
42
+ 1990 Passenger cars diesel,1990,Passenger cars,diesel,771.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
43
+ 1991 Passenger cars diesel,1991,Passenger cars,diesel,678,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
44
+ 1992 Passenger cars diesel,1992,Passenger cars,diesel,712,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
45
+ 1993 Passenger cars diesel,1993,Passenger cars,diesel,811.9,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
46
+ 1994 Passenger cars diesel,1994,Passenger cars,diesel,830.8,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
47
+ 1995 Passenger cars diesel,1995,Passenger cars,diesel,764.9,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
48
+ 1996 Passenger cars diesel,1996,Passenger cars,diesel,656.6,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
49
+ 1997 Passenger cars diesel,1997,Passenger cars,diesel,593.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
50
+ 1998 Passenger cars diesel,1998,Passenger cars,diesel,546.3,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
51
+ 1999 Passenger cars diesel,1999,Passenger cars,diesel,426.8,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
52
+ 2000 Passenger cars diesel,2000,Passenger cars,diesel,356.1,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
53
+ 2001 Passenger cars diesel,2001,Passenger cars,diesel,357.5,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
54
+ 2002 Passenger cars diesel,2002,Passenger cars,diesel,364.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
55
+ 2003 Passenger cars diesel,2003,Passenger cars,diesel,411.7,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
56
+ 2004 Passenger cars diesel,2004,Passenger cars,diesel,419.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
57
+ 2005 Passenger cars diesel,2005,Passenger cars,diesel,414,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
58
+ 2006 Passenger cars diesel,2006,Passenger cars,diesel,403.2,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
59
+ 2007 Passenger cars diesel,2007,Passenger cars,diesel,402,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
60
+ 2008 Passenger cars diesel,2008,Passenger cars,diesel,362,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
61
+ 2009 Passenger cars diesel,2009,Passenger cars,diesel,354,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
62
+ 1990 Passenger cars gasoline,1990,Passenger cars,gasoline,69756.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
63
+ 1991 Passenger cars gasoline,1991,Passenger cars,gasoline,65158.5,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
64
+ 1992 Passenger cars gasoline,1992,Passenger cars,gasoline,65767.1,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
65
+ 1993 Passenger cars gasoline,1993,Passenger cars,gasoline,66855.4,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
66
+ 1994 Passenger cars gasoline,1994,Passenger cars,gasoline,67679.5,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
67
+ 1995 Passenger cars gasoline,1995,Passenger cars,gasoline,67937.7,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
68
+ 1996 Passenger cars gasoline,1996,Passenger cars,gasoline,68988.6,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
69
+ 1997 Passenger cars gasoline,1997,Passenger cars,gasoline,69025.1,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
70
+ 1998 Passenger cars gasoline,1998,Passenger cars,gasoline,71303,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
71
+ 1999 Passenger cars gasoline,1999,Passenger cars,gasoline,73144,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
72
+ 2000 Passenger cars gasoline,2000,Passenger cars,gasoline,72860,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
73
+ 2001 Passenger cars gasoline,2001,Passenger cars,gasoline,73446,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
74
+ 2002 Passenger cars gasoline,2002,Passenger cars,gasoline,74911,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
75
+ 2003 Passenger cars gasoline,2003,Passenger cars,gasoline,72623,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
76
+ 2004 Passenger cars gasoline,2004,Passenger cars,gasoline,72223,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
77
+ 2005 Passenger cars gasoline,2005,Passenger cars,gasoline,74600,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
78
+ 2006 Passenger cars gasoline,2006,Passenger cars,gasoline,71646,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
79
+ 2007 Passenger cars gasoline,2007,Passenger cars,gasoline,89794,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
80
+ 2008 Passenger cars gasoline,2008,Passenger cars,gasoline,86375,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
81
+ 2009 Passenger cars gasoline,2009,Passenger cars,gasoline,86019,million_gallons,EPA (2012) Table A-88,U.S. EPA (2012) Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-2010,http://www.epa.gov/climatechange/emissions/usinventoryreport.html
@@ -0,0 +1,541 @@
1
+ name,size_class_name,year,type_name,fuel_efficiency_city,fuel_efficiency_city_units,fuel_efficiency_highway,fuel_efficiency_highway_units,source,source_detail,source_url
2
+ Small car 1975,Small car,1975,Passenger cars,14.37467083,miles_per_gallon,17.47342011,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
3
+ Small car 1976,Small car,1976,Passenger cars,15.69842128,miles_per_gallon,18.81203582,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
4
+ Small car 1977,Small car,1977,Passenger cars,16.34401017,miles_per_gallon,19.48608604,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
5
+ Small car 1978,Small car,1978,Passenger cars,18.19589677,miles_per_gallon,22.03625925,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
6
+ Small car 1979,Small car,1979,Passenger cars,18.29214062,miles_per_gallon,22.12539205,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
7
+ Small car 1980,Small car,1980,Passenger cars,20.4253039,miles_per_gallon,24.83002926,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
8
+ Small car 1981,Small car,1981,Passenger cars,22.44908244,miles_per_gallon,26.88587002,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
9
+ Small car 1982,Small car,1982,Passenger cars,22.59509808,miles_per_gallon,28.06417257,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
10
+ Small car 1983,Small car,1983,Passenger cars,22.82560307,miles_per_gallon,28.59175881,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
11
+ Small car 1984,Small car,1984,Passenger cars,22.72580059,miles_per_gallon,28.6679259,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
12
+ Small car 1985,Small car,1985,Passenger cars,23.06540021,miles_per_gallon,29.01443234,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
13
+ Small car 1986,Small car,1986,Passenger cars,23.12047734,miles_per_gallon,29.10094306,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
14
+ Small car 1987,Small car,1987,Passenger cars,22.94794621,miles_per_gallon,29.09599159,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
15
+ Small car 1988,Small car,1988,Passenger cars,23.13836047,miles_per_gallon,29.27420989,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
16
+ Small car 1989,Small car,1989,Passenger cars,22.80234991,miles_per_gallon,28.98927197,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
17
+ Small car 1990,Small car,1990,Passenger cars,22.36510806,miles_per_gallon,28.51847889,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
18
+ Small car 1991,Small car,1991,Passenger cars,22.301936,miles_per_gallon,28.77342843,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
19
+ Small car 1992,Small car,1992,Passenger cars,22.0046193,miles_per_gallon,28.88770326,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
20
+ Small car 1993,Small car,1993,Passenger cars,22.21942226,miles_per_gallon,29.28837137,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
21
+ Small car 1994,Small car,1994,Passenger cars,21.90625122,miles_per_gallon,29.32891058,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
22
+ Small car 1995,Small car,1995,Passenger cars,21.90188435,miles_per_gallon,29.68742537,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
23
+ Small car 1996,Small car,1996,Passenger cars,21.7778657,miles_per_gallon,29.73201997,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
24
+ Small car 1997,Small car,1997,Passenger cars,21.73909199,miles_per_gallon,29.5732493,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
25
+ Small car 1998,Small car,1998,Passenger cars,21.54603562,miles_per_gallon,29.66984177,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
26
+ Small car 1999,Small car,1999,Passenger cars,20.96807065,miles_per_gallon,28.88948656,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
27
+ Small car 2000,Small car,2000,Passenger cars,20.92707442,miles_per_gallon,28.66452666,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
28
+ Small car 2001,Small car,2001,Passenger cars,21.07303762,miles_per_gallon,28.90050027,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
29
+ Small car 2002,Small car,2002,Passenger cars,20.89772908,miles_per_gallon,28.73014061,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
30
+ Small car 2003,Small car,2003,Passenger cars,20.77358486,miles_per_gallon,28.52338232,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
31
+ Small car 2004,Small car,2004,Passenger cars,20.42439011,miles_per_gallon,28.44134249,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
32
+ Small car 2005,Small car,2005,Passenger cars,20.72446744,miles_per_gallon,28.58393037,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
33
+ Small car 2006,Small car,2006,Passenger cars,20.64452646,miles_per_gallon,28.8429752,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
34
+ Small car 2007,Small car,2007,Passenger cars,21.0942087,miles_per_gallon,29.23126885,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
35
+ Small car 2008,Small car,2008,Passenger cars,21.04919405,miles_per_gallon,29.38379767,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
36
+ Small car 2009,Small car,2009,Passenger cars,22.26030752,miles_per_gallon,30.69990664,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
37
+ Small car 2010,Small car,2010,Passenger cars,22.53823383,miles_per_gallon,31.05372353,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
38
+ Midsize car 1975,Midsize car,1975,Passenger cars,10.51999645,miles_per_gallon,13.14355838,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
39
+ Midsize car 1976,Midsize car,1976,Passenger cars,12.22089949,miles_per_gallon,15.13027855,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
40
+ Midsize car 1977,Midsize car,1977,Passenger cars,12.86392338,miles_per_gallon,15.71898008,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
41
+ Midsize car 1978,Midsize car,1978,Passenger cars,14.41903567,miles_per_gallon,17.94810967,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
42
+ Midsize car 1979,Midsize car,1979,Passenger cars,15.02559247,miles_per_gallon,18.11136392,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
43
+ Midsize car 1980,Midsize car,1980,Passenger cars,16.77633403,miles_per_gallon,20.95094755,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
44
+ Midsize car 1981,Midsize car,1981,Passenger cars,17.79114683,miles_per_gallon,22.28223727,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
45
+ Midsize car 1982,Midsize car,1982,Passenger cars,18.41598463,miles_per_gallon,23.78804117,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
46
+ Midsize car 1983,Midsize car,1983,Passenger cars,18.37189774,miles_per_gallon,23.59856285,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
47
+ Midsize car 1984,Midsize car,1984,Passenger cars,18.45892503,miles_per_gallon,23.90097609,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
48
+ Midsize car 1985,Midsize car,1985,Passenger cars,19.04644987,miles_per_gallon,24.87156775,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
49
+ Midsize car 1986,Midsize car,1986,Passenger cars,19.57337293,miles_per_gallon,25.91873523,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
50
+ Midsize car 1987,Midsize car,1987,Passenger cars,19.53778407,miles_per_gallon,25.96260806,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
51
+ Midsize car 1988,Midsize car,1988,Passenger cars,19.70940435,miles_per_gallon,27.05619296,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
52
+ Midsize car 1989,Midsize car,1989,Passenger cars,19.50422808,miles_per_gallon,27.12359832,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
53
+ Midsize car 1990,Midsize car,1990,Passenger cars,18.99757681,miles_per_gallon,26.84231452,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
54
+ Midsize car 1991,Midsize car,1991,Passenger cars,18.78728368,miles_per_gallon,26.48902909,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
55
+ Midsize car 1992,Midsize car,1992,Passenger cars,18.4329986,miles_per_gallon,26.28489028,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
56
+ Midsize car 1993,Midsize car,1993,Passenger cars,18.57033022,miles_per_gallon,26.44645523,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
57
+ Midsize car 1994,Midsize car,1994,Passenger cars,18.32393293,miles_per_gallon,26.04534603,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
58
+ Midsize car 1995,Midsize car,1995,Passenger cars,18.23285264,miles_per_gallon,26.54164468,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
59
+ Midsize car 1996,Midsize car,1996,Passenger cars,18.45683204,miles_per_gallon,26.51799802,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
60
+ Midsize car 1997,Midsize car,1997,Passenger cars,18.3577638,miles_per_gallon,26.65089773,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
61
+ Midsize car 1998,Midsize car,1998,Passenger cars,18.695937,miles_per_gallon,26.94764931,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
62
+ Midsize car 1999,Midsize car,1999,Passenger cars,18.54601047,miles_per_gallon,26.77205223,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
63
+ Midsize car 2000,Midsize car,2000,Passenger cars,18.38123565,miles_per_gallon,26.46673837,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
64
+ Midsize car 2001,Midsize car,2001,Passenger cars,18.45101975,miles_per_gallon,26.54580902,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
65
+ Midsize car 2002,Midsize car,2002,Passenger cars,18.77827334,miles_per_gallon,26.46972654,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
66
+ Midsize car 2003,Midsize car,2003,Passenger cars,18.87839454,miles_per_gallon,27.2651182,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
67
+ Midsize car 2004,Midsize car,2004,Passenger cars,19.00963725,miles_per_gallon,27.49985106,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
68
+ Midsize car 2005,Midsize car,2005,Passenger cars,19.66376533,miles_per_gallon,28.17187178,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
69
+ Midsize car 2006,Midsize car,2006,Passenger cars,19.58979708,miles_per_gallon,27.96493461,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
70
+ Midsize car 2007,Midsize car,2007,Passenger cars,20.66719521,miles_per_gallon,29.09890276,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
71
+ Midsize car 2008,Midsize car,2008,Passenger cars,20.90050823,miles_per_gallon,28.96643994,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
72
+ Midsize car 2009,Midsize car,2009,Passenger cars,21.48128243,miles_per_gallon,29.82272828,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
73
+ Midsize car 2010,Midsize car,2010,Passenger cars,21.99784486,miles_per_gallon,30.46467957,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
74
+ Large car 1975,Large car,1975,Passenger cars,10.20755218,miles_per_gallon,12.62544128,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
75
+ Large car 1976,Large car,1976,Passenger cars,11.11004359,miles_per_gallon,13.4504229,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
76
+ Large car 1977,Large car,1977,Passenger cars,12.38718894,miles_per_gallon,15.18394766,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
77
+ Large car 1978,Large car,1978,Passenger cars,13.02931801,miles_per_gallon,16.30835236,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
78
+ Large car 1979,Large car,1979,Passenger cars,13.65014778,miles_per_gallon,16.46083858,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
79
+ Large car 1980,Large car,1980,Passenger cars,14.66508207,miles_per_gallon,18.76705788,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
80
+ Large car 1981,Large car,1981,Passenger cars,15.40324045,miles_per_gallon,20.83108932,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
81
+ Large car 1982,Large car,1982,Passenger cars,15.63521216,miles_per_gallon,20.99822017,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
82
+ Large car 1983,Large car,1983,Passenger cars,15.21582037,miles_per_gallon,20.62874443,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
83
+ Large car 1984,Large car,1984,Passenger cars,15.46961809,miles_per_gallon,20.97040433,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
84
+ Large car 1985,Large car,1985,Passenger cars,16.62994407,miles_per_gallon,23.27373168,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
85
+ Large car 1986,Large car,1986,Passenger cars,17.57557887,miles_per_gallon,25.39200096,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
86
+ Large car 1987,Large car,1987,Passenger cars,17.36524179,miles_per_gallon,25.37895262,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
87
+ Large car 1988,Large car,1988,Passenger cars,17.55769816,miles_per_gallon,25.55897935,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
88
+ Large car 1989,Large car,1989,Passenger cars,17.29859752,miles_per_gallon,25.31323409,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
89
+ Large car 1990,Large car,1990,Passenger cars,16.90679244,miles_per_gallon,25.05181662,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
90
+ Large car 1991,Large car,1991,Passenger cars,16.82893539,miles_per_gallon,24.79726183,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
91
+ Large car 1992,Large car,1992,Passenger cars,16.77550582,miles_per_gallon,25.02159484,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
92
+ Large car 1993,Large car,1993,Passenger cars,17.02049994,miles_per_gallon,25.21612591,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
93
+ Large car 1994,Large car,1994,Passenger cars,16.84936701,miles_per_gallon,24.9233101,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
94
+ Large car 1995,Large car,1995,Passenger cars,16.93450994,miles_per_gallon,25.4432696,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
95
+ Large car 1996,Large car,1996,Passenger cars,16.72613135,miles_per_gallon,25.26894296,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
96
+ Large car 1997,Large car,1997,Passenger cars,16.79121519,miles_per_gallon,25.38149297,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
97
+ Large car 1998,Large car,1998,Passenger cars,16.77867293,miles_per_gallon,25.15665642,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
98
+ Large car 1999,Large car,1999,Passenger cars,16.83680811,miles_per_gallon,25.24773217,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
99
+ Large car 2000,Large car,2000,Passenger cars,17.255613,miles_per_gallon,25.71470032,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
100
+ Large car 2001,Large car,2001,Passenger cars,17.09280643,miles_per_gallon,25.48525875,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
101
+ Large car 2002,Large car,2002,Passenger cars,17.41403949,miles_per_gallon,25.68436396,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
102
+ Large car 2003,Large car,2003,Passenger cars,17.29649886,miles_per_gallon,25.6482552,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
103
+ Large car 2004,Large car,2004,Passenger cars,17.15467148,miles_per_gallon,25.61706637,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
104
+ Large car 2005,Large car,2005,Passenger cars,17.37378074,miles_per_gallon,25.50992831,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
105
+ Large car 2006,Large car,2006,Passenger cars,17.09378832,miles_per_gallon,25.21325452,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
106
+ Large car 2007,Large car,2007,Passenger cars,17.08804262,miles_per_gallon,25.34556029,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
107
+ Large car 2008,Large car,2008,Passenger cars,17.83834467,miles_per_gallon,26.75916303,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
108
+ Large car 2009,Large car,2009,Passenger cars,18.58878455,miles_per_gallon,27.55651734,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
109
+ Large car 2010,Large car,2010,Passenger cars,18.50147868,miles_per_gallon,27.35071045,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
110
+ Small wagon 1975,Small wagon,1975,Passenger cars,17.38998169,miles_per_gallon,21.56700753,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
111
+ Small wagon 1976,Small wagon,1976,Passenger cars,18.65489105,miles_per_gallon,22.90765371,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
112
+ Small wagon 1977,Small wagon,1977,Passenger cars,20.16032447,miles_per_gallon,23.83235748,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
113
+ Small wagon 1978,Small wagon,1978,Passenger cars,19.23423234,miles_per_gallon,22.8772906,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
114
+ Small wagon 1979,Small wagon,1979,Passenger cars,20.27839146,miles_per_gallon,24.31199374,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
115
+ Small wagon 1980,Small wagon,1980,Passenger cars,22.60058437,miles_per_gallon,26.9780626,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
116
+ Small wagon 1981,Small wagon,1981,Passenger cars,23.57173735,miles_per_gallon,28.52973434,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
117
+ Small wagon 1982,Small wagon,1982,Passenger cars,23.88859881,miles_per_gallon,29.35447203,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
118
+ Small wagon 1983,Small wagon,1983,Passenger cars,25.34206778,miles_per_gallon,30.46150128,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
119
+ Small wagon 1984,Small wagon,1984,Passenger cars,24.88455019,miles_per_gallon,30.71020415,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
120
+ Small wagon 1985,Small wagon,1985,Passenger cars,25.44287226,miles_per_gallon,30.94890618,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
121
+ Small wagon 1986,Small wagon,1986,Passenger cars,24.24304838,miles_per_gallon,29.22438445,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
122
+ Small wagon 1987,Small wagon,1987,Passenger cars,23.80844877,miles_per_gallon,28.94180199,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
123
+ Small wagon 1988,Small wagon,1988,Passenger cars,24.3029196,miles_per_gallon,28.95540381,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
124
+ Small wagon 1989,Small wagon,1989,Passenger cars,24.15102922,miles_per_gallon,29.36909392,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
125
+ Small wagon 1990,Small wagon,1990,Passenger cars,22.42158321,miles_per_gallon,27.7422735,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
126
+ Small wagon 1991,Small wagon,1991,Passenger cars,22.8091777,miles_per_gallon,28.94558481,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
127
+ Small wagon 1992,Small wagon,1992,Passenger cars,22.30092723,miles_per_gallon,28.63234914,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
128
+ Small wagon 1993,Small wagon,1993,Passenger cars,23.72721011,miles_per_gallon,31.04264877,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
129
+ Small wagon 1994,Small wagon,1994,Passenger cars,23.62571636,miles_per_gallon,31.74073855,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
130
+ Small wagon 1995,Small wagon,1995,Passenger cars,23.85004032,miles_per_gallon,31.7964164,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
131
+ Small wagon 1996,Small wagon,1996,Passenger cars,22.4650578,miles_per_gallon,30.00268905,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
132
+ Small wagon 1997,Small wagon,1997,Passenger cars,22.65238615,miles_per_gallon,30.8208416,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
133
+ Small wagon 1998,Small wagon,1998,Passenger cars,22.34592247,miles_per_gallon,30.72905889,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
134
+ Small wagon 1999,Small wagon,1999,Passenger cars,21.79907905,miles_per_gallon,30.06332052,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
135
+ Small wagon 2000,Small wagon,2000,Passenger cars,20.01853445,miles_per_gallon,28.1883818,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
136
+ Small wagon 2001,Small wagon,2001,Passenger cars,18.96131356,miles_per_gallon,25.39489708,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
137
+ Small wagon 2002,Small wagon,2002,Passenger cars,18.00528138,miles_per_gallon,24.41931803,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
138
+ Small wagon 2003,Small wagon,2003,Passenger cars,20.8256561,miles_per_gallon,27.14015967,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
139
+ Small wagon 2004,Small wagon,2004,Passenger cars,21.57234624,miles_per_gallon,27.71384096,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
140
+ Small wagon 2005,Small wagon,2005,Passenger cars,22.1687918,miles_per_gallon,28.36658078,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
141
+ Small wagon 2006,Small wagon,2006,Passenger cars,21.3441833,miles_per_gallon,27.80329135,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
142
+ Small wagon 2007,Small wagon,2007,Passenger cars,21.45936654,miles_per_gallon,28.2349113,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
143
+ Small wagon 2008,Small wagon,2008,Passenger cars,21.88256472,miles_per_gallon,28.7489601,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
144
+ Small wagon 2009,Small wagon,2009,Passenger cars,22.78770057,miles_per_gallon,29.54875777,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
145
+ Small wagon 2010,Small wagon,2010,Passenger cars,23.45960611,miles_per_gallon,30.03029268,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
146
+ Midsize wagon 1975,Midsize wagon,1975,Passenger cars,10.22701397,miles_per_gallon,12.85244751,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
147
+ Midsize wagon 1976,Midsize wagon,1976,Passenger cars,12.6234295,miles_per_gallon,15.09676315,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
148
+ Midsize wagon 1977,Midsize wagon,1977,Passenger cars,12.91808364,miles_per_gallon,15.28314321,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
149
+ Midsize wagon 1978,Midsize wagon,1978,Passenger cars,14.63008942,miles_per_gallon,17.64850443,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
150
+ Midsize wagon 1979,Midsize wagon,1979,Passenger cars,15.18695474,miles_per_gallon,17.86958285,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
151
+ Midsize wagon 1980,Midsize wagon,1980,Passenger cars,16.54338942,miles_per_gallon,20.09058013,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
152
+ Midsize wagon 1981,Midsize wagon,1981,Passenger cars,18.14950644,miles_per_gallon,21.83674921,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
153
+ Midsize wagon 1982,Midsize wagon,1982,Passenger cars,18.52809135,miles_per_gallon,22.57351763,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
154
+ Midsize wagon 1983,Midsize wagon,1983,Passenger cars,19.05799167,miles_per_gallon,23.33793582,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
155
+ Midsize wagon 1984,Midsize wagon,1984,Passenger cars,19.40496907,miles_per_gallon,24.19625401,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
156
+ Midsize wagon 1985,Midsize wagon,1985,Passenger cars,19.43732938,miles_per_gallon,24.61027206,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
157
+ Midsize wagon 1986,Midsize wagon,1986,Passenger cars,19.76384266,miles_per_gallon,25.7076956,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
158
+ Midsize wagon 1987,Midsize wagon,1987,Passenger cars,19.28502126,miles_per_gallon,25.56565857,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
159
+ Midsize wagon 1988,Midsize wagon,1988,Passenger cars,19.4357375,miles_per_gallon,26.53839455,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
160
+ Midsize wagon 1989,Midsize wagon,1989,Passenger cars,18.83828964,miles_per_gallon,25.94933607,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
161
+ Midsize wagon 1990,Midsize wagon,1990,Passenger cars,18.34201319,miles_per_gallon,25.94608353,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
162
+ Midsize wagon 1991,Midsize wagon,1991,Passenger cars,18.63967771,miles_per_gallon,26.44765216,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
163
+ Midsize wagon 1992,Midsize wagon,1992,Passenger cars,18.62125351,miles_per_gallon,26.90261917,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
164
+ Midsize wagon 1993,Midsize wagon,1993,Passenger cars,18.66925318,miles_per_gallon,26.59743702,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
165
+ Midsize wagon 1994,Midsize wagon,1994,Passenger cars,18.35456014,miles_per_gallon,26.44365827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
166
+ Midsize wagon 1995,Midsize wagon,1995,Passenger cars,18.76184999,miles_per_gallon,26.63977871,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
167
+ Midsize wagon 1996,Midsize wagon,1996,Passenger cars,18.51502162,miles_per_gallon,25.84173956,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
168
+ Midsize wagon 1997,Midsize wagon,1997,Passenger cars,18.4887263,miles_per_gallon,25.46450118,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
169
+ Midsize wagon 1998,Midsize wagon,1998,Passenger cars,18.48893329,miles_per_gallon,25.03020891,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
170
+ Midsize wagon 1999,Midsize wagon,1999,Passenger cars,18.29756352,miles_per_gallon,25.40433051,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
171
+ Midsize wagon 2000,Midsize wagon,2000,Passenger cars,18.94604028,miles_per_gallon,25.71487954,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
172
+ Midsize wagon 2001,Midsize wagon,2001,Passenger cars,18.48709973,miles_per_gallon,24.8375907,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
173
+ Midsize wagon 2002,Midsize wagon,2002,Passenger cars,18.89279565,miles_per_gallon,25.40409348,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
174
+ Midsize wagon 2003,Midsize wagon,2003,Passenger cars,18.56842296,miles_per_gallon,25.42342976,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
175
+ Midsize wagon 2004,Midsize wagon,2004,Passenger cars,17.88557135,miles_per_gallon,24.71428398,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
176
+ Midsize wagon 2005,Midsize wagon,2005,Passenger cars,17.42080895,miles_per_gallon,24.3597949,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
177
+ Midsize wagon 2006,Midsize wagon,2006,Passenger cars,17.7223685,miles_per_gallon,24.66406673,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
178
+ Midsize wagon 2007,Midsize wagon,2007,Passenger cars,18.36093738,miles_per_gallon,25.3691916,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
179
+ Midsize wagon 2008,Midsize wagon,2008,Passenger cars,17.90003162,miles_per_gallon,24.99435427,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
180
+ Midsize wagon 2009,Midsize wagon,2009,Passenger cars,19.00606339,miles_per_gallon,25.54881653,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
181
+ Midsize wagon 2010,Midsize wagon,2010,Passenger cars,19.16047621,miles_per_gallon,26.20527397,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
182
+ Large wagon 1975,Large wagon,1975,Passenger cars,9.254039201,miles_per_gallon,11.62503189,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
183
+ Large wagon 1976,Large wagon,1976,Passenger cars,10.61167971,miles_per_gallon,12.85456966,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
184
+ Large wagon 1977,Large wagon,1977,Passenger cars,12.23247294,miles_per_gallon,14.61442523,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
185
+ Large wagon 1978,Large wagon,1978,Passenger cars,12.3993155,miles_per_gallon,15.37066613,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
186
+ Large wagon 1979,Large wagon,1979,Passenger cars,12.8134173,miles_per_gallon,15.05425977,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
187
+ Large wagon 1980,Large wagon,1980,Passenger cars,14.6924919,miles_per_gallon,18.86990622,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
188
+ Large wagon 1981,Large wagon,1981,Passenger cars,15.03149612,miles_per_gallon,20.3186977,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
189
+ Large wagon 1982,Large wagon,1982,Passenger cars,14.38727618,miles_per_gallon,19.80500313,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
190
+ Large wagon 1983,Large wagon,1983,Passenger cars,14.65105971,miles_per_gallon,20.21746447,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
191
+ Large wagon 1984,Large wagon,1984,Passenger cars,14.94302219,miles_per_gallon,20.54950505,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
192
+ Large wagon 1985,Large wagon,1985,Passenger cars,15.57829293,miles_per_gallon,21.83990933,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
193
+ Large wagon 1986,Large wagon,1986,Passenger cars,16.21344702,miles_per_gallon,23.28336693,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
194
+ Large wagon 1987,Large wagon,1987,Passenger cars,16.2770586,miles_per_gallon,23.14401522,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
195
+ Large wagon 1988,Large wagon,1988,Passenger cars,16.79157249,miles_per_gallon,23.44741785,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
196
+ Large wagon 1989,Large wagon,1989,Passenger cars,16.50157088,miles_per_gallon,22.95366264,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
197
+ Large wagon 1990,Large wagon,1990,Passenger cars,16.49295998,miles_per_gallon,23.1348418,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
198
+ Large wagon 1991,Large wagon,1991,Passenger cars,16.27843912,miles_per_gallon,24.19200186,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
199
+ Large wagon 1992,Large wagon,1992,Passenger cars,15.89353991,miles_per_gallon,24.27789204,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
200
+ Large wagon 1993,Large wagon,1993,Passenger cars,15.60651597,miles_per_gallon,24.2954733,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
201
+ Large wagon 1994,Large wagon,1994,Passenger cars,15.94250355,miles_per_gallon,24.12009685,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
202
+ Large wagon 1995,Large wagon,1995,Passenger cars,15.7799189,miles_per_gallon,23.91174019,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
203
+ Large wagon 1996,Large wagon,1996,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
204
+ Large wagon 1997,Large wagon,1997,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
205
+ Large wagon 1998,Large wagon,1998,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
206
+ Large wagon 1999,Large wagon,1999,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
207
+ Large wagon 2000,Large wagon,2000,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
208
+ Large wagon 2001,Large wagon,2001,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
209
+ Large wagon 2002,Large wagon,2002,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
210
+ Large wagon 2003,Large wagon,2003,Passenger cars,15.85821184,miles_per_gallon,24.47505827,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
211
+ Large wagon 2004,Large wagon,2004,Passenger cars,14.89759951,miles_per_gallon,20.93047052,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
212
+ Large wagon 2005,Large wagon,2005,Passenger cars,14.92267151,miles_per_gallon,21.11197439,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
213
+ Large wagon 2006,Large wagon,2006,Passenger cars,14.75780595,miles_per_gallon,20.72758163,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
214
+ Large wagon 2007,Large wagon,2007,Passenger cars,14.50060847,miles_per_gallon,21.6347329,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
215
+ Large wagon 2008,Large wagon,2008,Passenger cars,14.62412488,miles_per_gallon,20.96772886,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
216
+ Large wagon 2009,Large wagon,2009,Passenger cars,14.81250621,miles_per_gallon,19.47048635,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
217
+ Large wagon 2010,Large wagon,2010,Passenger cars,14.51704882,miles_per_gallon,18.9802774,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
218
+ Small van 1975,Small van,1975,Light-duty trucks,16.1814698,miles_per_gallon,19.56729224,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
219
+ Small van 1976,Small van,1976,Light-duty trucks,15.0887177,miles_per_gallon,20.13813476,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
220
+ Small van 1977,Small van,1977,Light-duty trucks,17.22273239,miles_per_gallon,21.51448214,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
221
+ Small van 1978,Small van,1978,Light-duty trucks,15.65182535,miles_per_gallon,19.13753196,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
222
+ Small van 1979,Small van,1979,Light-duty trucks,14.81508052,miles_per_gallon,17.60468318,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
223
+ Small van 1980,Small van,1980,Light-duty trucks,14.70111721,miles_per_gallon,18.61772878,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
224
+ Small van 1981,Small van,1981,Light-duty trucks,14.64898131,miles_per_gallon,17.40733129,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
225
+ Small van 1982,Small van,1982,Light-duty trucks,17.6896775,miles_per_gallon,19.40231738,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
226
+ Small van 1983,Small van,1983,Light-duty trucks,15.63805513,miles_per_gallon,18.3668527,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
227
+ Small van 1984,Small van,1984,Light-duty trucks,20.82031433,miles_per_gallon,22.99770222,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
228
+ Small van 1985,Small van,1985,Light-duty trucks,20.6667934,miles_per_gallon,23.05184684,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
229
+ Small van 1986,Small van,1986,Light-duty trucks,20.64813761,miles_per_gallon,23.13927318,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
230
+ Small van 1987,Small van,1987,Light-duty trucks,19.41652849,miles_per_gallon,21.91629222,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
231
+ Small van 1988,Small van,1988,Light-duty trucks,19.24578597,miles_per_gallon,22.34892357,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
232
+ Small van 1989,Small van,1989,Light-duty trucks,19.76016954,miles_per_gallon,22.36671079,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
233
+ Small van 1990,Small van,1990,Light-duty trucks,18.48293456,miles_per_gallon,21.83929154,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
234
+ Small van 1991,Small van,1991,Light-duty trucks,18.56179729,miles_per_gallon,21.54970089,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
235
+ Small van 1992,Small van,1992,Light-duty trucks,20.18917807,miles_per_gallon,25.27082389,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
236
+ Small van 1993,Small van,1993,Light-duty trucks,20.89969225,miles_per_gallon,26.38579314,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
237
+ Small van 1994,Small van,1994,Light-duty trucks,19.72281027,miles_per_gallon,25.665899,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
238
+ Small van 1995,Small van,1995,Light-duty trucks,19.33896057,miles_per_gallon,24.80689366,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
239
+ Small van 1996,Small van,1996,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
240
+ Small van 1997,Small van,1997,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
241
+ Small van 1998,Small van,1998,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
242
+ Small van 1999,Small van,1999,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
243
+ Small van 2000,Small van,2000,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
244
+ Small van 2001,Small van,2001,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
245
+ Small van 2002,Small van,2002,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
246
+ Small van 2003,Small van,2003,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
247
+ Small van 2004,Small van,2004,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
248
+ Small van 2005,Small van,2005,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
249
+ Small van 2006,Small van,2006,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
250
+ Small van 2007,Small van,2007,Light-duty trucks,18.76925681,miles_per_gallon,24.94760414,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
251
+ Small van 2008,Small van,2008,Light-duty trucks,20.87534463,miles_per_gallon,27.26896757,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
252
+ Small van 2009,Small van,2009,Light-duty trucks,20.69559674,miles_per_gallon,26.79224417,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
253
+ Small van 2010,Small van,2010,Light-duty trucks,20.88273814,miles_per_gallon,27.27745508,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
254
+ Midsize van 1975,Midsize van,1975,Light-duty trucks,10.84316305,miles_per_gallon,11.89565848,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
255
+ Midsize van 1976,Midsize van,1976,Light-duty trucks,11.34592863,miles_per_gallon,12.86959621,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
256
+ Midsize van 1977,Midsize van,1977,Light-duty trucks,11.61132574,miles_per_gallon,12.77660516,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
257
+ Midsize van 1978,Midsize van,1978,Light-duty trucks,11.33319813,miles_per_gallon,12.17954644,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
258
+ Midsize van 1979,Midsize van,1979,Light-duty trucks,11.79458427,miles_per_gallon,12.48938987,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
259
+ Midsize van 1980,Midsize van,1980,Light-duty trucks,13.45915269,miles_per_gallon,15.56185341,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
260
+ Midsize van 1981,Midsize van,1981,Light-duty trucks,14.27655154,miles_per_gallon,16.52540079,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
261
+ Midsize van 1982,Midsize van,1982,Light-duty trucks,14.29135271,miles_per_gallon,16.49365021,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
262
+ Midsize van 1983,Midsize van,1983,Light-duty trucks,14.78764711,miles_per_gallon,17.42710451,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
263
+ Midsize van 1984,Midsize van,1984,Light-duty trucks,15.13444846,miles_per_gallon,18.06904796,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
264
+ Midsize van 1985,Midsize van,1985,Light-duty trucks,15.76855561,miles_per_gallon,18.48602152,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
265
+ Midsize van 1986,Midsize van,1986,Light-duty trucks,16.22419353,miles_per_gallon,19.67106543,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
266
+ Midsize van 1987,Midsize van,1987,Light-duty trucks,16.34891172,miles_per_gallon,20.26896042,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
267
+ Midsize van 1988,Midsize van,1988,Light-duty trucks,16.57639524,miles_per_gallon,21.0410429,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
268
+ Midsize van 1989,Midsize van,1989,Light-duty trucks,16.47111252,miles_per_gallon,20.91704074,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
269
+ Midsize van 1990,Midsize van,1990,Light-duty trucks,16.32587583,miles_per_gallon,21.01030012,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
270
+ Midsize van 1991,Midsize van,1991,Light-duty trucks,16.33383611,miles_per_gallon,20.93207622,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
271
+ Midsize van 1992,Midsize van,1992,Light-duty trucks,16.19187217,miles_per_gallon,20.8581583,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
272
+ Midsize van 1993,Midsize van,1993,Light-duty trucks,16.35779767,miles_per_gallon,21.54292121,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
273
+ Midsize van 1994,Midsize van,1994,Light-duty trucks,16.05205609,miles_per_gallon,20.98110849,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
274
+ Midsize van 1995,Midsize van,1995,Light-duty trucks,16.04578176,miles_per_gallon,21.41205611,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
275
+ Midsize van 1996,Midsize van,1996,Light-duty trucks,16.30191931,miles_per_gallon,21.95200341,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
276
+ Midsize van 1997,Midsize van,1997,Light-duty trucks,16.09801374,miles_per_gallon,21.66129327,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
277
+ Midsize van 1998,Midsize van,1998,Light-duty trucks,16.38122376,miles_per_gallon,22.50365908,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
278
+ Midsize van 1999,Midsize van,1999,Light-duty trucks,16.07141945,miles_per_gallon,22.25397935,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
279
+ Midsize van 2000,Midsize van,2000,Light-duty trucks,16.28519048,miles_per_gallon,22.58436466,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
280
+ Midsize van 2001,Midsize van,2001,Light-duty trucks,16.54984652,miles_per_gallon,22.93283948,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
281
+ Midsize van 2002,Midsize van,2002,Light-duty trucks,16.26650604,miles_per_gallon,22.58287852,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
282
+ Midsize van 2003,Midsize van,2003,Light-duty trucks,16.37322052,miles_per_gallon,22.90250837,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
283
+ Midsize van 2004,Midsize van,2004,Light-duty trucks,16.15924319,miles_per_gallon,23.08776989,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
284
+ Midsize van 2005,Midsize van,2005,Light-duty trucks,16.19677842,miles_per_gallon,23.00496126,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
285
+ Midsize van 2006,Midsize van,2006,Light-duty trucks,16.43034193,miles_per_gallon,23.55562483,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
286
+ Midsize van 2007,Midsize van,2007,Light-duty trucks,16.25586239,miles_per_gallon,23.36982062,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
287
+ Midsize van 2008,Midsize van,2008,Light-duty trucks,16.45450728,miles_per_gallon,23.65770205,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
288
+ Midsize van 2009,Midsize van,2009,Light-duty trucks,16.60774433,miles_per_gallon,23.85836027,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
289
+ Midsize van 2010,Midsize van,2010,Light-duty trucks,16.78470965,miles_per_gallon,23.86979954,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
290
+ Large van 1975,Large van,1975,Light-duty trucks,9.998590729,miles_per_gallon,11.74300721,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
291
+ Large van 1976,Large van,1976,Light-duty trucks,10.60544195,miles_per_gallon,12.68075755,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
292
+ Large van 1977,Large van,1977,Light-duty trucks,12.48152362,miles_per_gallon,14.08967838,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
293
+ Large van 1978,Large van,1978,Light-duty trucks,12.18676395,miles_per_gallon,13.57933751,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
294
+ Large van 1979,Large van,1979,Light-duty trucks,9.735187065,miles_per_gallon,11.10239837,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
295
+ Large van 1980,Large van,1980,Light-duty trucks,12.81623145,miles_per_gallon,14.69890089,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
296
+ Large van 1981,Large van,1981,Light-duty trucks,13.5139726,miles_per_gallon,15.26958629,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
297
+ Large van 1982,Large van,1982,Light-duty trucks,12.97973404,miles_per_gallon,14.67942,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
298
+ Large van 1983,Large van,1983,Light-duty trucks,12.88956671,miles_per_gallon,15.0137457,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
299
+ Large van 1984,Large van,1984,Light-duty trucks,12.95331312,miles_per_gallon,15.40617242,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
300
+ Large van 1985,Large van,1985,Light-duty trucks,12.69838401,miles_per_gallon,15.07356961,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
301
+ Large van 1986,Large van,1986,Light-duty trucks,13.82395226,miles_per_gallon,16.4926273,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
302
+ Large van 1987,Large van,1987,Light-duty trucks,13.23100866,miles_per_gallon,16.07226789,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
303
+ Large van 1988,Large van,1988,Light-duty trucks,13.02216318,miles_per_gallon,16.03459191,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
304
+ Large van 1989,Large van,1989,Light-duty trucks,12.92561473,miles_per_gallon,15.73775676,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
305
+ Large van 1990,Large van,1990,Light-duty trucks,12.56920328,miles_per_gallon,15.6630114,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
306
+ Large van 1991,Large van,1991,Light-duty trucks,12.61500677,miles_per_gallon,15.79697011,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
307
+ Large van 1992,Large van,1992,Light-duty trucks,12.59506075,miles_per_gallon,16.22495284,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
308
+ Large van 1993,Large van,1993,Light-duty trucks,12.63292223,miles_per_gallon,16.09626799,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
309
+ Large van 1994,Large van,1994,Light-duty trucks,12.47115853,miles_per_gallon,16.32017386,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
310
+ Large van 1995,Large van,1995,Light-duty trucks,12.49356851,miles_per_gallon,16.29314557,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
311
+ Large van 1996,Large van,1996,Light-duty trucks,12.4243773,miles_per_gallon,16.26678163,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
312
+ Large van 1997,Large van,1997,Light-duty trucks,13.31054979,miles_per_gallon,17.81941784,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
313
+ Large van 1998,Large van,1998,Light-duty trucks,13.05700558,miles_per_gallon,17.60438622,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
314
+ Large van 1999,Large van,1999,Light-duty trucks,12.74322578,miles_per_gallon,17.04499306,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
315
+ Large van 2000,Large van,2000,Light-duty trucks,12.79504076,miles_per_gallon,16.78185006,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
316
+ Large van 2001,Large van,2001,Light-duty trucks,12.4526301,miles_per_gallon,16.86664587,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
317
+ Large van 2002,Large van,2002,Light-duty trucks,12.7384241,miles_per_gallon,16.45235108,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
318
+ Large van 2003,Large van,2003,Light-duty trucks,13.23579409,miles_per_gallon,17.04618454,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
319
+ Large van 2004,Large van,2004,Light-duty trucks,13.50192782,miles_per_gallon,17.88443648,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
320
+ Large van 2005,Large van,2005,Light-duty trucks,13.40971032,miles_per_gallon,17.72588401,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
321
+ Large van 2006,Large van,2006,Light-duty trucks,13.43313687,miles_per_gallon,17.71009695,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
322
+ Large van 2007,Large van,2007,Light-duty trucks,13.69573082,miles_per_gallon,18.19227196,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
323
+ Large van 2008,Large van,2008,Light-duty trucks,14.02261453,miles_per_gallon,18.10320042,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
324
+ Large van 2009,Large van,2009,Light-duty trucks,13.89885462,miles_per_gallon,18.0518961,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
325
+ Large van 2010,Large van,2010,Light-duty trucks,13.76897776,miles_per_gallon,18.32936402,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
326
+ Small suv 1975,Small suv,1975,Light-duty trucks,12.73164282,miles_per_gallon,15.0530445,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
327
+ Small suv 1976,Small suv,1976,Light-duty trucks,12.80804587,miles_per_gallon,14.53715183,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
328
+ Small suv 1977,Small suv,1977,Light-duty trucks,13.73392405,miles_per_gallon,15.46707203,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
329
+ Small suv 1978,Small suv,1978,Light-duty trucks,13.53364087,miles_per_gallon,15.43385348,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
330
+ Small suv 1979,Small suv,1979,Light-duty trucks,13.91855115,miles_per_gallon,14.46906877,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
331
+ Small suv 1980,Small suv,1980,Light-duty trucks,15.26213154,miles_per_gallon,16.97858458,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
332
+ Small suv 1981,Small suv,1981,Light-duty trucks,16.33721067,miles_per_gallon,18.67399552,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
333
+ Small suv 1982,Small suv,1982,Light-duty trucks,16.63544209,miles_per_gallon,18.5292654,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
334
+ Small suv 1983,Small suv,1983,Light-duty trucks,17.40157457,miles_per_gallon,19.11420939,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
335
+ Small suv 1984,Small suv,1984,Light-duty trucks,17.30023773,miles_per_gallon,19.78339311,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
336
+ Small suv 1985,Small suv,1985,Light-duty trucks,17.18345026,miles_per_gallon,21.30618538,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
337
+ Small suv 1986,Small suv,1986,Light-duty trucks,18.54010291,miles_per_gallon,22.33790803,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
338
+ Small suv 1987,Small suv,1987,Light-duty trucks,18.87211758,miles_per_gallon,22.57197238,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
339
+ Small suv 1988,Small suv,1988,Light-duty trucks,18.84591017,miles_per_gallon,22.38616517,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
340
+ Small suv 1989,Small suv,1989,Light-duty trucks,17.70642562,miles_per_gallon,21.00820498,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
341
+ Small suv 1990,Small suv,1990,Light-duty trucks,18.14085047,miles_per_gallon,21.31189538,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
342
+ Small suv 1991,Small suv,1991,Light-duty trucks,18.74027207,miles_per_gallon,20.46843121,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
343
+ Small suv 1992,Small suv,1992,Light-duty trucks,18.44270117,miles_per_gallon,20.28798131,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
344
+ Small suv 1993,Small suv,1993,Light-duty trucks,18.16857076,miles_per_gallon,20.05541901,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
345
+ Small suv 1994,Small suv,1994,Light-duty trucks,18.61383276,miles_per_gallon,20.91419012,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
346
+ Small suv 1995,Small suv,1995,Light-duty trucks,18.59203307,miles_per_gallon,20.86382493,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
347
+ Small suv 1996,Small suv,1996,Light-duty trucks,21.33388126,miles_per_gallon,25.09062734,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
348
+ Small suv 1997,Small suv,1997,Light-duty trucks,16.69357534,miles_per_gallon,20.7283331,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
349
+ Small suv 1998,Small suv,1998,Light-duty trucks,17.45931892,miles_per_gallon,21.27690791,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
350
+ Small suv 1999,Small suv,1999,Light-duty trucks,17.66143665,miles_per_gallon,21.30235017,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
351
+ Small suv 2000,Small suv,2000,Light-duty trucks,16.43477695,miles_per_gallon,19.87590545,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
352
+ Small suv 2001,Small suv,2001,Light-duty trucks,18.04169172,miles_per_gallon,21.60510629,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
353
+ Small suv 2002,Small suv,2002,Light-duty trucks,17.73345875,miles_per_gallon,21.61346307,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
354
+ Small suv 2003,Small suv,2003,Light-duty trucks,17.7963459,miles_per_gallon,22.23586684,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
355
+ Small suv 2004,Small suv,2004,Light-duty trucks,17.14196142,miles_per_gallon,22.11462649,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
356
+ Small suv 2005,Small suv,2005,Light-duty trucks,16.92197318,miles_per_gallon,21.53156103,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
357
+ Small suv 2006,Small suv,2006,Light-duty trucks,15.01564133,miles_per_gallon,19.21993583,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
358
+ Small suv 2007,Small suv,2007,Light-duty trucks,15.6594791,miles_per_gallon,19.75034406,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
359
+ Small suv 2008,Small suv,2008,Light-duty trucks,15.75019995,miles_per_gallon,20.49651434,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
360
+ Small suv 2009,Small suv,2009,Light-duty trucks,14.32911481,miles_per_gallon,18.75696859,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
361
+ Small suv 2010,Small suv,2010,Light-duty trucks,14.8908247,miles_per_gallon,19.19732358,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
362
+ Midsize suv 1975,Midsize suv,1975,Light-duty trucks,9.92444673,miles_per_gallon,10.6202081,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
363
+ Midsize suv 1976,Midsize suv,1976,Light-duty trucks,10.70542995,miles_per_gallon,12.0233224,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
364
+ Midsize suv 1977,Midsize suv,1977,Light-duty trucks,11.76503065,miles_per_gallon,13.24840771,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
365
+ Midsize suv 1978,Midsize suv,1978,Light-duty trucks,11.10071679,miles_per_gallon,12.68770763,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
366
+ Midsize suv 1979,Midsize suv,1979,Light-duty trucks,9.733043949,miles_per_gallon,10.46719556,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
367
+ Midsize suv 1980,Midsize suv,1980,Light-duty trucks,11.51708573,miles_per_gallon,13.01225338,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
368
+ Midsize suv 1981,Midsize suv,1981,Light-duty trucks,12.44506549,miles_per_gallon,14.49919788,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
369
+ Midsize suv 1982,Midsize suv,1982,Light-duty trucks,13.07492968,miles_per_gallon,15.15643216,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
370
+ Midsize suv 1983,Midsize suv,1983,Light-duty trucks,14.62582032,miles_per_gallon,18.04695964,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
371
+ Midsize suv 1984,Midsize suv,1984,Light-duty trucks,14.78808666,miles_per_gallon,18.10618227,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
372
+ Midsize suv 1985,Midsize suv,1985,Light-duty trucks,15.31457205,miles_per_gallon,19.16375907,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
373
+ Midsize suv 1986,Midsize suv,1986,Light-duty trucks,15.36300258,miles_per_gallon,18.68905618,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
374
+ Midsize suv 1987,Midsize suv,1987,Light-duty trucks,15.15495891,miles_per_gallon,19.10177938,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
375
+ Midsize suv 1988,Midsize suv,1988,Light-duty trucks,14.87336276,miles_per_gallon,18.79236457,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
376
+ Midsize suv 1989,Midsize suv,1989,Light-duty trucks,14.89236505,miles_per_gallon,18.61301514,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
377
+ Midsize suv 1990,Midsize suv,1990,Light-duty trucks,14.40116286,miles_per_gallon,18.39174021,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
378
+ Midsize suv 1991,Midsize suv,1991,Light-duty trucks,15.07516552,miles_per_gallon,19.47630821,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
379
+ Midsize suv 1992,Midsize suv,1992,Light-duty trucks,14.7301191,miles_per_gallon,19.08251243,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
380
+ Midsize suv 1993,Midsize suv,1993,Light-duty trucks,14.70696486,miles_per_gallon,19.28325451,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
381
+ Midsize suv 1994,Midsize suv,1994,Light-duty trucks,14.51207493,miles_per_gallon,18.82171389,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
382
+ Midsize suv 1995,Midsize suv,1995,Light-duty trucks,14.33788548,miles_per_gallon,18.68565599,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
383
+ Midsize suv 1996,Midsize suv,1996,Light-duty trucks,14.4681942,miles_per_gallon,19.1281303,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
384
+ Midsize suv 1997,Midsize suv,1997,Light-duty trucks,14.83153074,miles_per_gallon,19.14258995,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
385
+ Midsize suv 1998,Midsize suv,1998,Light-duty trucks,14.87735694,miles_per_gallon,19.52608732,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
386
+ Midsize suv 1999,Midsize suv,1999,Light-duty trucks,15.08320099,miles_per_gallon,19.41917913,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
387
+ Midsize suv 2000,Midsize suv,2000,Light-duty trucks,14.92725502,miles_per_gallon,19.38249691,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
388
+ Midsize suv 2001,Midsize suv,2001,Light-duty trucks,15.28477918,miles_per_gallon,20.00962811,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
389
+ Midsize suv 2002,Midsize suv,2002,Light-duty trucks,15.3547063,miles_per_gallon,19.91110786,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
390
+ Midsize suv 2003,Midsize suv,2003,Light-duty trucks,15.57771739,miles_per_gallon,20.57905172,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
391
+ Midsize suv 2004,Midsize suv,2004,Light-duty trucks,15.47684545,miles_per_gallon,20.74717227,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
392
+ Midsize suv 2005,Midsize suv,2005,Light-duty trucks,15.77482404,miles_per_gallon,20.97092608,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
393
+ Midsize suv 2006,Midsize suv,2006,Light-duty trucks,16.21791625,miles_per_gallon,21.42016649,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
394
+ Midsize suv 2007,Midsize suv,2007,Light-duty trucks,16.99634428,miles_per_gallon,22.22311831,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
395
+ Midsize suv 2008,Midsize suv,2008,Light-duty trucks,17.5303457,miles_per_gallon,22.84853801,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
396
+ Midsize suv 2009,Midsize suv,2009,Light-duty trucks,18.27420221,miles_per_gallon,24.13242,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
397
+ Midsize suv 2010,Midsize suv,2010,Light-duty trucks,18.68756374,miles_per_gallon,24.55794934,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
398
+ Large suv 1975,Large suv,1975,Light-duty trucks,9.977751008,miles_per_gallon,10.74251135,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
399
+ Large suv 1976,Large suv,1976,Light-duty trucks,10.13232049,miles_per_gallon,11.64685508,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
400
+ Large suv 1977,Large suv,1977,Light-duty trucks,11.09972872,miles_per_gallon,12.16217089,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
401
+ Large suv 1978,Large suv,1978,Light-duty trucks,10.78472598,miles_per_gallon,11.6829754,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
402
+ Large suv 1979,Large suv,1979,Light-duty trucks,9.300053636,miles_per_gallon,9.435458609,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
403
+ Large suv 1980,Large suv,1980,Light-duty trucks,11.3226913,miles_per_gallon,13.39403225,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
404
+ Large suv 1981,Large suv,1981,Light-duty trucks,12.27953563,miles_per_gallon,14.0610862,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
405
+ Large suv 1982,Large suv,1982,Light-duty trucks,14.40524569,miles_per_gallon,18.9165154,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
406
+ Large suv 1983,Large suv,1983,Light-duty trucks,13.59191964,miles_per_gallon,17.11907747,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
407
+ Large suv 1984,Large suv,1984,Light-duty trucks,13.01571294,miles_per_gallon,16.53660533,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
408
+ Large suv 1985,Large suv,1985,Light-duty trucks,12.90364431,miles_per_gallon,16.82214944,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
409
+ Large suv 1986,Large suv,1986,Light-duty trucks,12.81178272,miles_per_gallon,16.71033721,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
410
+ Large suv 1987,Large suv,1987,Light-duty trucks,12.92684133,miles_per_gallon,16.55819956,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
411
+ Large suv 1988,Large suv,1988,Light-duty trucks,12.58367133,miles_per_gallon,16.16406874,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
412
+ Large suv 1989,Large suv,1989,Light-duty trucks,12.43932953,miles_per_gallon,16.61210168,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
413
+ Large suv 1990,Large suv,1990,Light-duty trucks,12.35549922,miles_per_gallon,16.63696046,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
414
+ Large suv 1991,Large suv,1991,Light-duty trucks,12.05052172,miles_per_gallon,15.70221854,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
415
+ Large suv 1992,Large suv,1992,Light-duty trucks,11.61380612,miles_per_gallon,15.17090559,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
416
+ Large suv 1993,Large suv,1993,Light-duty trucks,12.05652955,miles_per_gallon,15.73677664,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
417
+ Large suv 1994,Large suv,1994,Light-duty trucks,12.17196559,miles_per_gallon,15.48076514,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
418
+ Large suv 1995,Large suv,1995,Light-duty trucks,12.23028511,miles_per_gallon,15.6859237,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
419
+ Large suv 1996,Large suv,1996,Light-duty trucks,12.56902226,miles_per_gallon,16.48200846,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
420
+ Large suv 1997,Large suv,1997,Light-duty trucks,12.58600209,miles_per_gallon,16.80172595,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
421
+ Large suv 1998,Large suv,1998,Light-duty trucks,12.38630166,miles_per_gallon,16.68195094,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
422
+ Large suv 1999,Large suv,1999,Light-duty trucks,12.17579312,miles_per_gallon,16.61785668,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
423
+ Large suv 2000,Large suv,2000,Light-duty trucks,12.47124862,miles_per_gallon,16.65828714,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
424
+ Large suv 2001,Large suv,2001,Light-duty trucks,13.19982987,miles_per_gallon,17.11191599,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
425
+ Large suv 2002,Large suv,2002,Light-duty trucks,13.3128507,miles_per_gallon,18.03281424,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
426
+ Large suv 2003,Large suv,2003,Light-duty trucks,13.03882836,miles_per_gallon,17.61728166,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
427
+ Large suv 2004,Large suv,2004,Light-duty trucks,13.01250004,miles_per_gallon,17.70133485,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
428
+ Large suv 2005,Large suv,2005,Light-duty trucks,13.62589777,miles_per_gallon,18.59954547,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
429
+ Large suv 2006,Large suv,2006,Light-duty trucks,13.90386737,miles_per_gallon,19.07224328,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
430
+ Large suv 2007,Large suv,2007,Light-duty trucks,14.20734495,miles_per_gallon,19.85401834,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
431
+ Large suv 2008,Large suv,2008,Light-duty trucks,14.31676103,miles_per_gallon,20.20397086,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
432
+ Large suv 2009,Large suv,2009,Light-duty trucks,15.36306417,miles_per_gallon,21.46093285,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
433
+ Large suv 2010,Large suv,2010,Light-duty trucks,15.62895327,miles_per_gallon,21.85122961,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
434
+ Small pickup 1975,Small pickup,1975,Light-duty trucks,17.27672774,miles_per_gallon,22.2188685,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
435
+ Small pickup 1976,Small pickup,1976,Light-duty trucks,18.25698123,miles_per_gallon,23.4241776,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
436
+ Small pickup 1977,Small pickup,1977,Light-duty trucks,19.86095557,miles_per_gallon,24.51599739,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
437
+ Small pickup 1978,Small pickup,1978,Light-duty trucks,20.42206589,miles_per_gallon,23.58475539,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
438
+ Small pickup 1979,Small pickup,1979,Light-duty trucks,17.89260592,miles_per_gallon,21.56621574,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
439
+ Small pickup 1980,Small pickup,1980,Light-duty trucks,19.39630211,miles_per_gallon,22.54920038,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
440
+ Small pickup 1981,Small pickup,1981,Light-duty trucks,22.49550789,miles_per_gallon,25.99672629,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
441
+ Small pickup 1982,Small pickup,1982,Light-duty trucks,21.88086838,miles_per_gallon,25.12051644,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
442
+ Small pickup 1983,Small pickup,1983,Light-duty trucks,21.55653687,miles_per_gallon,24.79825036,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
443
+ Small pickup 1984,Small pickup,1984,Light-duty trucks,20.93642,miles_per_gallon,24.00161923,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
444
+ Small pickup 1985,Small pickup,1985,Light-duty trucks,21.39984169,miles_per_gallon,24.51274101,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
445
+ Small pickup 1986,Small pickup,1986,Light-duty trucks,20.48969665,miles_per_gallon,23.98434048,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
446
+ Small pickup 1987,Small pickup,1987,Light-duty trucks,20.34806701,miles_per_gallon,24.10289445,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
447
+ Small pickup 1988,Small pickup,1988,Light-duty trucks,19.64045065,miles_per_gallon,22.76819137,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
448
+ Small pickup 1989,Small pickup,1989,Light-duty trucks,18.64871448,miles_per_gallon,21.80140432,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
449
+ Small pickup 1990,Small pickup,1990,Light-duty trucks,19.17512105,miles_per_gallon,22.56585583,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
450
+ Small pickup 1991,Small pickup,1991,Light-duty trucks,19.16401716,miles_per_gallon,22.7803341,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
451
+ Small pickup 1992,Small pickup,1992,Light-duty trucks,18.74010302,miles_per_gallon,22.35642439,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
452
+ Small pickup 1993,Small pickup,1993,Light-duty trucks,19.83258776,miles_per_gallon,23.81479753,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
453
+ Small pickup 1994,Small pickup,1994,Light-duty trucks,18.65091559,miles_per_gallon,22.60427647,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
454
+ Small pickup 1995,Small pickup,1995,Light-duty trucks,18.25609201,miles_per_gallon,21.99824716,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
455
+ Small pickup 1996,Small pickup,1996,Light-duty trucks,18.30965648,miles_per_gallon,22.04336937,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
456
+ Small pickup 1997,Small pickup,1997,Light-duty trucks,18.4557611,miles_per_gallon,22.10597749,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
457
+ Small pickup 1998,Small pickup,1998,Light-duty trucks,17.96888463,miles_per_gallon,21.791959,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
458
+ Small pickup 1999,Small pickup,1999,Light-duty trucks,17.03985773,miles_per_gallon,20.50810144,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
459
+ Small pickup 2000,Small pickup,2000,Light-duty trucks,19.05757379,miles_per_gallon,23.00993918,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
460
+ Small pickup 2001,Small pickup,2001,Light-duty trucks,19.18273015,miles_per_gallon,22.93627696,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
461
+ Small pickup 2002,Small pickup,2002,Light-duty trucks,16.82024871,miles_per_gallon,20.03736757,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
462
+ Small pickup 2003,Small pickup,2003,Light-duty trucks,16.57238561,miles_per_gallon,20.36065249,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
463
+ Small pickup 2004,Small pickup,2004,Light-duty trucks,16.00978345,miles_per_gallon,19.68381902,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
464
+ Small pickup 2005,Small pickup,2005,Light-duty trucks,17.62191546,miles_per_gallon,23.47929353,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
465
+ Small pickup 2006,Small pickup,2006,Light-duty trucks,18.31488343,miles_per_gallon,24.34512857,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
466
+ Small pickup 2007,Small pickup,2007,Light-duty trucks,18.31488343,miles_per_gallon,24.34512857,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
467
+ Small pickup 2008,Small pickup,2008,Light-duty trucks,18.31488343,miles_per_gallon,24.34512857,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
468
+ Small pickup 2009,Small pickup,2009,Light-duty trucks,18.31488343,miles_per_gallon,24.34512857,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
469
+ Small pickup 2010,Small pickup,2010,Light-duty trucks,18.31488343,miles_per_gallon,24.34512857,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
470
+ Midsize pickup 1975,Midsize pickup,1975,Light-duty trucks,16.75675817,miles_per_gallon,19.61243563,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
471
+ Midsize pickup 1976,Midsize pickup,1976,Light-duty trucks,18.07955348,miles_per_gallon,21.59823586,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
472
+ Midsize pickup 1977,Midsize pickup,1977,Light-duty trucks,23.27566509,miles_per_gallon,28.07942103,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
473
+ Midsize pickup 1978,Midsize pickup,1978,Light-duty trucks,23.3739104,miles_per_gallon,27.10539923,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
474
+ Midsize pickup 1979,Midsize pickup,1979,Light-duty trucks,20.62911158,miles_per_gallon,24.05068338,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
475
+ Midsize pickup 1980,Midsize pickup,1980,Light-duty trucks,20.53952825,miles_per_gallon,24.08780325,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
476
+ Midsize pickup 1981,Midsize pickup,1981,Light-duty trucks,20.82372685,miles_per_gallon,24.83982264,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
477
+ Midsize pickup 1982,Midsize pickup,1982,Light-duty trucks,20.77767642,miles_per_gallon,25.65174132,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
478
+ Midsize pickup 1983,Midsize pickup,1983,Light-duty trucks,20.67592303,miles_per_gallon,25.37988559,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
479
+ Midsize pickup 1984,Midsize pickup,1984,Light-duty trucks,19.9410896,miles_per_gallon,24.8067851,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
480
+ Midsize pickup 1985,Midsize pickup,1985,Light-duty trucks,19.88819224,miles_per_gallon,25.06506738,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
481
+ Midsize pickup 1986,Midsize pickup,1986,Light-duty trucks,20.23295671,miles_per_gallon,24.89945054,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
482
+ Midsize pickup 1987,Midsize pickup,1987,Light-duty trucks,19.54302433,miles_per_gallon,24.2802902,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
483
+ Midsize pickup 1988,Midsize pickup,1988,Light-duty trucks,19.30940785,miles_per_gallon,24.14015102,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
484
+ Midsize pickup 1989,Midsize pickup,1989,Light-duty trucks,18.90590802,miles_per_gallon,23.45709225,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
485
+ Midsize pickup 1990,Midsize pickup,1990,Light-duty trucks,18.67111933,miles_per_gallon,23.32066215,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
486
+ Midsize pickup 1991,Midsize pickup,1991,Light-duty trucks,18.39977498,miles_per_gallon,23.41583725,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
487
+ Midsize pickup 1992,Midsize pickup,1992,Light-duty trucks,17.60358517,miles_per_gallon,22.80599841,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
488
+ Midsize pickup 1993,Midsize pickup,1993,Light-duty trucks,17.44712564,miles_per_gallon,22.57377115,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
489
+ Midsize pickup 1994,Midsize pickup,1994,Light-duty trucks,17.68664756,miles_per_gallon,22.62517994,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
490
+ Midsize pickup 1995,Midsize pickup,1995,Light-duty trucks,18.00792761,miles_per_gallon,23.34031125,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
491
+ Midsize pickup 1996,Midsize pickup,1996,Light-duty trucks,17.85833516,miles_per_gallon,23.42609137,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
492
+ Midsize pickup 1997,Midsize pickup,1997,Light-duty trucks,17.39750558,miles_per_gallon,22.67774424,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
493
+ Midsize pickup 1998,Midsize pickup,1998,Light-duty trucks,17.10459324,miles_per_gallon,22.38508732,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
494
+ Midsize pickup 1999,Midsize pickup,1999,Light-duty trucks,16.02060166,miles_per_gallon,20.99986761,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
495
+ Midsize pickup 2000,Midsize pickup,2000,Light-duty trucks,16.15829306,miles_per_gallon,21.23841841,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
496
+ Midsize pickup 2001,Midsize pickup,2001,Light-duty trucks,15.3590288,miles_per_gallon,20.19302132,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
497
+ Midsize pickup 2002,Midsize pickup,2002,Light-duty trucks,14.80901705,miles_per_gallon,19.41160496,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
498
+ Midsize pickup 2003,Midsize pickup,2003,Light-duty trucks,15.8506733,miles_per_gallon,20.97079192,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
499
+ Midsize pickup 2004,Midsize pickup,2004,Light-duty trucks,15.10969955,miles_per_gallon,19.9590146,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
500
+ Midsize pickup 2005,Midsize pickup,2005,Light-duty trucks,16.21445755,miles_per_gallon,21.45398029,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
501
+ Midsize pickup 2006,Midsize pickup,2006,Light-duty trucks,16.52749841,miles_per_gallon,21.83954886,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
502
+ Midsize pickup 2007,Midsize pickup,2007,Light-duty trucks,16.21217469,miles_per_gallon,21.07456388,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
503
+ Midsize pickup 2008,Midsize pickup,2008,Light-duty trucks,16.59550088,miles_per_gallon,21.41669487,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
504
+ Midsize pickup 2009,Midsize pickup,2009,Light-duty trucks,17.05189701,miles_per_gallon,21.90205658,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
505
+ Midsize pickup 2010,Midsize pickup,2010,Light-duty trucks,17.41282784,miles_per_gallon,22.35221398,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
506
+ Large pickup 1975,Large pickup,1975,Light-duty trucks,10.37309007,miles_per_gallon,12.21302877,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
507
+ Large pickup 1976,Large pickup,1976,Light-duty trucks,11.18822472,miles_per_gallon,12.68976488,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
508
+ Large pickup 1977,Large pickup,1977,Light-duty trucks,12.0960178,miles_per_gallon,13.43844968,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
509
+ Large pickup 1978,Large pickup,1978,Light-duty trucks,11.95296191,miles_per_gallon,13.09950049,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
510
+ Large pickup 1979,Large pickup,1979,Light-duty trucks,11.75991088,miles_per_gallon,12.64711145,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
511
+ Large pickup 1980,Large pickup,1980,Light-duty trucks,13.73720682,miles_per_gallon,15.84862012,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
512
+ Large pickup 1981,Large pickup,1981,Light-duty trucks,14.81993711,miles_per_gallon,17.34187639,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
513
+ Large pickup 1982,Large pickup,1982,Light-duty trucks,14.83660427,miles_per_gallon,17.30469826,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
514
+ Large pickup 1983,Large pickup,1983,Light-duty trucks,14.34785031,miles_per_gallon,16.94801631,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
515
+ Large pickup 1984,Large pickup,1984,Light-duty trucks,14.03691745,miles_per_gallon,16.66096648,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
516
+ Large pickup 1985,Large pickup,1985,Light-duty trucks,14.04583646,miles_per_gallon,16.45213773,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
517
+ Large pickup 1986,Large pickup,1986,Light-duty trucks,14.38193563,miles_per_gallon,16.95358162,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
518
+ Large pickup 1987,Large pickup,1987,Light-duty trucks,13.85308669,miles_per_gallon,16.50935953,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
519
+ Large pickup 1988,Large pickup,1988,Light-duty trucks,13.85720776,miles_per_gallon,17.1658098,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
520
+ Large pickup 1989,Large pickup,1989,Light-duty trucks,13.76036065,miles_per_gallon,17.22543544,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
521
+ Large pickup 1990,Large pickup,1990,Light-duty trucks,13.5596368,miles_per_gallon,17.38999418,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
522
+ Large pickup 1991,Large pickup,1991,Light-duty trucks,13.6174429,miles_per_gallon,17.60228731,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
523
+ Large pickup 1992,Large pickup,1992,Light-duty trucks,13.56945822,miles_per_gallon,17.75348207,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
524
+ Large pickup 1993,Large pickup,1993,Light-duty trucks,13.72795727,miles_per_gallon,18.00500411,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
525
+ Large pickup 1994,Large pickup,1994,Light-duty trucks,13.45373197,miles_per_gallon,17.59638314,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
526
+ Large pickup 1995,Large pickup,1995,Light-duty trucks,13.11477405,miles_per_gallon,17.21907769,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
527
+ Large pickup 1996,Large pickup,1996,Light-duty trucks,13.18635251,miles_per_gallon,17.4010397,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
528
+ Large pickup 1997,Large pickup,1997,Light-duty trucks,13.57241851,miles_per_gallon,18.06525883,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
529
+ Large pickup 1998,Large pickup,1998,Light-duty trucks,13.22494873,miles_per_gallon,17.82591921,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
530
+ Large pickup 1999,Large pickup,1999,Light-duty trucks,13.21134988,miles_per_gallon,17.45203907,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
531
+ Large pickup 2000,Large pickup,2000,Light-duty trucks,13.82577096,miles_per_gallon,17.85872719,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
532
+ Large pickup 2001,Large pickup,2001,Light-duty trucks,13.39846862,miles_per_gallon,17.4813351,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
533
+ Large pickup 2002,Large pickup,2002,Light-duty trucks,13.23706895,miles_per_gallon,17.23154956,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
534
+ Large pickup 2003,Large pickup,2003,Light-duty trucks,13.32755062,miles_per_gallon,17.28671435,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
535
+ Large pickup 2004,Large pickup,2004,Light-duty trucks,13.26245148,miles_per_gallon,17.32775468,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
536
+ Large pickup 2005,Large pickup,2005,Light-duty trucks,13.373729,miles_per_gallon,17.7862555,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
537
+ Large pickup 2006,Large pickup,2006,Light-duty trucks,13.56908685,miles_per_gallon,17.95393445,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
538
+ Large pickup 2007,Large pickup,2007,Light-duty trucks,13.55735325,miles_per_gallon,18.20457237,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
539
+ Large pickup 2008,Large pickup,2008,Light-duty trucks,13.68750772,miles_per_gallon,18.52156647,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
540
+ Large pickup 2009,Large pickup,2009,Light-duty trucks,13.8951785,miles_per_gallon,18.97289613,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report
541
+ Large pickup 2010,Large pickup,2010,Light-duty trucks,14.05138547,miles_per_gallon,19.26996972,miles_per_gallon,EPA (2010) Appendix E,"EPA (2010) Light-Duty Automotive Technology, Carbon Dioxide Emissions, and Fuel Economy Trends: 1975 Through 2010: Appendix E",http://www.epa.gov/oms/fetrends.htm#report