Electric Vehicle Population Data
Electric Vehicle Population Data in Washington State: BEVs and PHEVs registered
@kaggle.gunapro_electric_vehicle_population_data
Electric Vehicle Population Data in Washington State: BEVs and PHEVs registered
@kaggle.gunapro_electric_vehicle_population_data
The dataset I am sharing provides information on Battery Electric Vehicles (BEVs) and Plug-in Hybrid Electric Vehicles (PHEVs) currently registered through the Washington State Department of Licensing (DOL).
The columns in the dataset include:
This dataset was sourced from the data.gov website and aims to contribute to the understanding of electric vehicle adoption and distribution in Washington State.
CREATE TABLE electric_vehicle_population_data (
"vin_1_10" VARCHAR -- VIN (1-10),
"county" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"postal_code" DOUBLE,
"model_year" BIGINT,
"make" VARCHAR,
"model" VARCHAR,
"electric_vehicle_type" VARCHAR,
"clean_alternative_fuel_vehicle_cafv_eligibility" VARCHAR -- Clean Alternative Fuel Vehicle (CAFV) Eligibility,
"electric_range" BIGINT,
"base_msrp" BIGINT,
"legislative_district" DOUBLE,
"dol_vehicle_id" BIGINT,
"vehicle_location" VARCHAR,
"electric_utility" VARCHAR,
"n_2020_census_tract" DOUBLE -- 2020 Census Tract
);
Anyone who has the link will be able to view this.