BEVs Population Data
This dataset shows the Battery Electric Vehicles (BEVs)
@kaggle.feryrwnn_bev_population_data
This dataset shows the Battery Electric Vehicles (BEVs)
@kaggle.feryrwnn_bev_population_data
This dataset is sourced from the Washington State Department of Licensing (DOL), obtained from website. The data is licensed under the Open Database License (ODbL) 1.0, which allows for sharing, modification, and redistribution as long as proper attribution is given and derivative works are also licensed under ODbL. This data set has been slightly modified to only show Electric Vehicle Type BEV.
Main Columns:
VIN 1-10
: Unique vehicle IDCounty, City, State, Postal Code
: Registration locationModel Year, Make, Model
: Vehicle detailsElectric Vehicle Type
: Type of electric vehicleCAFV Eligibility
: Clean alternative fuel eligibilityElectric Range
: Electric driving range (miles)Base MSRP
: Vehicle's initial price (USD)Legislative District, DOL Vehicle ID
: Administrative identifiersVehicle Location
: Geographical coordinatesElectric Utility
: Electricity provider2020 Census Tract
: Census area codeCREATE TABLE bev_population_data (
"vin_1_10" VARCHAR,
"county" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"postal_code" BIGINT,
"model_year" BIGINT,
"make" VARCHAR,
"model" VARCHAR,
"electric_vehicle_type" VARCHAR,
"clean_alternative_fuel_vehicle_cafv_eligibility" VARCHAR,
"electric_range" BIGINT,
"base_msrp" BIGINT,
"legislative_district" DOUBLE,
"dol_vehicle_id" BIGINT,
"vehicle_location" VARCHAR,
"electric_utility" VARCHAR,
"n_2020_census_tract" BIGINT -- 2020 Census Tract
);
Anyone who has the link will be able to view this.