Dataset Viewer
The dataset viewer is taking too long to fetch the data. Try to refresh this page.
Server-side error
Error code: ClientConnectionError
π Global EV Charging Stations & EV Models Dataset
Author: Tarek Masryo Β· Kaggle
Version: v1.0 (2025-09-15)
License: CC BY 4.0
π TL;DR
A clean, analysis-ready dataset capturing the state of EV infrastructure in 2025:
- 242,417 rows across 121 countries
- 11 tidy columns describing charging sites
- Companion files: country/world summaries + EV models
π Why this dataset?
EV adoption is accelerating, but infrastructure data is fragmented and inconsistent.
This dataset delivers a global, standardized snapshot of charging availability, enabling:
- EV adoption & policy analysis
- Energy & sustainability research
- Machine learning & dashboard prototyping
π Files Included
data/charging_stations_world.csvβ global stations (main file, 11 columns)data/charging_stations_ml.csvβ ML-ready, compact version (7 columns)data/country_summary.csvβ per-country roll-updata/world_summary.csvβ global roll-updata/ev_models.csvβ EV model specificationsOCM_CC_BY_4.0.txtβ license text
ποΈ Data Dictionary
charging_stations_world.csv
| Column | Type | Description |
|---|---|---|
| id | int | Unique station ID (OCM) |
| name | str | Station name |
| city | str | City name (may be "UNKNOWN") |
| country_code | str | ISO-2 country code |
| state_province | str | State/Province (may be "UNKNOWN") |
| latitude | float | WGS84 latitude |
| longitude | float | WGS84 longitude |
| ports | int | Number of charging points |
| power_kw | float | Maximum charging power (kW) |
| power_class | str | Derived category (slow/fast/HPC) |
| is_fast_dc | bool | True if power_kw β₯ 50 |
country_summary.csv
| Column | Type | Description |
|---|---|---|
| country_code | str | ISO-2 country code |
| stations | int | Number of charging stations |
world_summary.csv
| Column | Type | Description |
|---|---|---|
| country_code | str | ISO-2 country code |
| country | str | Country name |
| count | int | Number of charging sites |
| max_power_kw_max | float | Max observed charging power (kW) |
ev_models.csv
| Column | Type | Description |
|---|---|---|
| make | str | Manufacturer |
| model | str | Model name |
| market_regions | str | Regions where model is sold |
| powertrain | str | BEV, PHEV, etc. |
| first_year | int | First year released |
| body_style | str | Sedan, SUV, etc. |
| origin_country | str | Manufacturer country |
π οΈ Quickstart
Using pandas:
import pandas as pd
stations = pd.read_csv("data/charging_stations_world.csv")
print(stations.shape)
print(stations.head())
Using Hugging Face Datasets:
from datasets import load_dataset
ds = load_dataset("tarekmasryo/global-ev-infra-data")
# Access main stations file
world = ds["charging_stations_world"]
print(world[0])
# Access country summary
country = ds["country_summary"]
print(country[0])
π‘ Suggested Uses
- Compare EV infrastructure across regions
- Measure share of fast-DC vs slow charging
- Build EV adoption dashboards
- Train ML models (clustering, forecasting, location analysis)
- Prototype routing/location tools for EV drivers
π License & Attribution
- Charging station data: Β© Open Charge Map β CC BY 4.0
β βContains data Β© Open Charge Map contributors.β - EV models file: compiled from CC0-friendly sources (no attribution required).
- Downloads last month
- 24