Home | Benchmarks | Categories | Atom Feed

Posted on Mon 01 April 2024 under GIS

Global EV Charging Points with Open Charge Map

Open Charge Map (OCM) aims to document the world's Electric Vehicle (EV) Charging Points. To date, they have produced a dataset of over 200K+ charging point locations around the world. Data is sourced both from volunteers as well as official sources.

The project is led by Christopher Cook, a software developer from Perth, Australia, who has been working on OCM since its inception in 2011.

Below is a heat map of the OCM dataset.

Operational Charge Points around the World.

In the EU at least, Charge Point Location density resembles that of the population density map for this region.

Operational Charge Points in Europe, the Middle East and North Africa

When you open the OCM website or app, you'll see a map of charging points.

Open Charge Map Overview

Each point contains information on the number of station / bays available at the charging location as well as the sockets supported and power delivery. There will be an indication if the station is operational or not, if it's accessible to the public and pricing details.

Open Charge Map Location Details

Users can also submit photographs of the location, its equipment and the surrounding area.

Open Charge Map Location Photo

In this blog post, I'll walk through making the OCM dataset analytics-ready and walk through some analysis of the dataset.

My Workstation

I'm using a 6 GHz Intel Core i9-14900K CPU. It has 8 performance cores and 16 efficiency cores with a total of 32 threads and 32 MB of L2 cache. It has a liquid cooler attached and is housed in a spacious, full-sized, Cooler Master HAF 700 computer case. I've come across videos on YouTube where people have managed to overclock the i9-14900KF to 9.1 GHz.

The system has 48 GB of DDR5 RAM clocked at 5,200 MHz and a 5th-generation, Crucial T700 4 TB NVMe M.2 SSD which can read at speeds up to 12,400 MB/s. There is a heatsink on the SSD to help keep its temperature down. This is my system's C drive.

There is also an 8 TB mechanical disk that I use to hold GIS datasets. This is my system's F drive.

The system is powered by a 1,200-watt, fully modular, Corsair Power Supply and is sat on an ASRock Z790 Pro RS Motherboard.

I'm running Ubuntu 22 LTS via Microsoft's Ubuntu for Windows on Windows 11 Pro. In case you're wondering why I don't run a Linux-based desktop as my primary work environment, I'm still using an Nvidia GTX 1080 GPU which has better driver support on Windows and I use ArcGIS Pro from time to time which only supports Windows natively.

Installing Prerequisites

I'll first install some dependencies.

$ sudo apt update
$ sudo apt install \
    git \
    jq \
    libimage-exiftool-perl \
    python3-virtualenv

Below I'll set up the Python Virtual Environment.

$ virtualenv ~/.ev
$ source ~/.ev/bin/activate
$ python -m pip install \
    rich

Below I'll download and install v0.10.1 of the official binary for DuckDB.

$ cd ~
$ wget -c https://github.com/duckdb/duckdb/releases/download/v0.10.1/duckdb_cli-linux-amd64.zip
$ unzip -j duckdb_cli-linux-amd64.zip
$ chmod +x duckdb

I'll install a few extensions for DuckDB and make sure they load automatically each time I launch the client.

$ ~/duckdb
INSTALL json;
INSTALL parquet;
INSTALL spatial;
$ vi ~/.duckdbrc
.timer on
.width 180
LOAD json;
LOAD parquet;
LOAD spatial;

The maps in this post were rendered with QGIS version 3.36. QGIS is a desktop application that runs on Windows, macOS and Linux. The software is very popular in the geospatial industry and was launched almost 15 million times in May last year.

I used QGIS' Tile+ plugin to add satellite basemaps. Tile+ can be installed from its ZIP distributable.

The steps needed to reproduce the basemap used in this post can be found in my Aircraft Route Analysis post.

Downloading Open Charge Map's Data

The following will clone 204,187 files totalling 307 MB from GitHub. This repository is refreshed monthly.

$ git clone https://github.com/openchargemap/ocm-export ~/open_charge_map

I'll also download a dataset that will help me categorise countries into groups. For instance, Scandinavia, Finland and the Baltics will be classed as 'northernEurope'.

$ git clone https://github.com/vijinho/ISO-Country-Data ~/ISO-Country-Data

Open Charge Map's Data Structure

OCM breaks up data by country and location. Below is an example from a location in Estonia.

$ cd ~/open_charge_map
$ jq -S 'del(.AddressInfo)' data/EE/OCM-11842.json
{
  "Connections": [
    {
      "Amps": 120,
      "ConnectionTypeID": 2,
      "CurrentTypeID": 30,
      "ID": 9252,
      "LevelID": 3,
      "PowerKW": 50,
      "Quantity": 1,
      "StatusTypeID": 50,
      "Voltage": 500
    },
    {
      "Amps": 32,
      "ConnectionTypeID": 25,
      "CurrentTypeID": 20,
      "ID": 25811,
      "LevelID": 2,
      "PowerKW": 22,
      "Quantity": 1,
      "StatusTypeID": 50,
      "Voltage": 400
    }
  ],
  "DataProviderID": 1,
  "DateCreated": "2012-08-03T13:08:00Z",
  "DateLastStatusUpdate": "2014-05-29T04:52:00Z",
  "DateLastVerified": "2014-05-29T04:52:00Z",
  "GeneralComments": "Charger number 37001",
  "ID": 11842,
  "NumberOfPoints": 1,
  "OperatorID": 76,
  "StatusTypeID": 50,
  "SubmissionStatusTypeID": 200,
  "UUID": "810B3C57-F495-4028-B364-937576BD75AB",
  "UsageCost": "5โ‚ฌ/up to 60min",
  "UsageTypeID": 1
}

Each file is a location which will be run by a network operator. Each location will have one or more charging stations / bays. A station can have one or more sockets as well as various power delivery specifications. These sockets and power delivery specifications are listed individually in the 'Connections' dictionary and each connection will have a quantity associated with it.

In the above example, only a single vehicle can be charged at any one time at this location and both a 50 kW, DC, 120A, 500V CHAdeMO socket as well as a 22 kW, AC (Three-Phase), 32A, 400V Type 2 socket are supported.

The location files use primary keys for many attributes. Their corresponding records can be found in a referencedata.json file included in the git repository. Below are the 13 reference table names for this project.

$ jq -S '.|keys' referencedata.json
[
  "ChargerTypes",
  "CheckinStatusTypes",
  "ConnectionTypes",
  "Countries",
  "CurrentTypes",
  "DataProviders",
  "DataTypes",
  "MetadataGroups",
  "Operators",
  "StatusTypes",
  "SubmissionStatusTypes",
  "UsageTypes",
  "UserCommentTypes"
]

Below are the primary keys and attributes for the charger types.

$ jq -S .ChargerTypes referencedata.json
[
  {
    "Comments": "Under 2 kW, usually domestic socket types",
    "ID": 1,
    "IsFastChargeCapable": false,
    "Title": "Level 1 : Low (Under 2kW)"
  },
  {
    "Comments": "Over 2 kW, usually non-domestic socket type",
    "ID": 2,
    "IsFastChargeCapable": false,
    "Title": "Level 2 : Medium (Over 2kW)"
  },
  {
    "Comments": "40KW and Higher",
    "ID": 3,
    "IsFastChargeCapable": true,
    "Title": "Level 3:  High (Over 40kW)"
  }
]

Charge Station Imagery

User-submitted photographs are also listed in this dataset. Within any one location, one or more images may be available. A URL to a thumbnail as well as the original image are listed.

$ jq -S '.MediaItems[0]' data/EE/OCM-103624.json
{
  "ChargePointID": 103624,
  "Comment": "",
  "DateCreated": "2020-07-26T12:19:00Z",
  "ID": 23192,
  "IsEnabled": true,
  "IsExternalResource": false,
  "IsFeaturedItem": false,
  "IsVideo": false,
  "ItemThumbnailURL": "https://media.openchargemap.io/images/EE/OCM103624/OCM-103624.thmb.2020072612183898.jpg",
  "ItemURL": "https://media.openchargemap.io/images/EE/OCM103624/OCM-103624.orig.2020072612183898.jpg",
  "User": {
    "ID": 26470,
    "Username": "erkkiat"
  }
}

The original images make up ~30 GB altogether. There are a few 20 MB PNGs, especially for Italy and Spain, but for the most part, images are ~2 MB. The vast majority of these photos were taken in Europe with the US and Australia being the only other locations of any significance. Below is the proportion of disk space used by the images broken down by region and country.

Image Sizes by Country in Open Charge Map

The original images don't look to have been through any processing, either to reduce their size or to remove any metadata. Many images contain more than 100 pieces of metadata, such as the image below.

$ wget https://media.openchargemap.io/images/ES/OCM64603/OCM-64603.orig.2016031412054624.jpg
$ exiftool OCM-64603.orig.2016031412054624.jpg | tail -n20
Image Height                    : 3264
Encoding Process                : Baseline DCT, Huffman coding
Bits Per Sample                 : 8
Color Components                : 3
Y Cb Cr Sub Sampling            : YCbCr4:2:0 (2 2)
Aperture                        : 2.4
Image Size                      : 2448x3264
Megapixels                      : 8.0
Shutter Speed                   : 1/1374
Create Date                     : 2016:03:05 11:27:08.053521
Date/Time Original              : 2016:03:05 11:27:08.053521
Modify Date                     : 2016:03:05 11:27:08.053521
Thumbnail Image                 : (Binary data 5911 bytes, use -b option to extract)
GPS Altitude                    : 70 m Above Sea Level
GPS Date/Time                   : 2016:03:05 10:26:59Z
GPS Latitude                    : 42 deg 10' 36.89" N
GPS Longitude                   : 3 deg 6' 29.49" E
Focal Length                    : 4.0 mm
GPS Position                    : 42 deg 10' 36.89" N, 3 deg 6' 29.49" E
Light Value                     : 12.9

Some photos are great research material with equipment and signage clearly presented. Others show the surrounding area and landscape which could be a replacement for Google Street View. This is handy as it can show if there is a canopy or if it's in underground / sheltered parking of some sort.

Below is an image found in the Brazilian dataset showing two charging bays in a parking garage.

Open Charge Map Image

Surprisingly few people submit photographs of charging point failures. I found this one in the Brazilian dataset.

Open Charge Map Image

Instructions to not leave your vehicle while charging in Jordan.

Open Charge Map Image

Below is a photo of a canopy covering the charging bays in Malaysia.

Open Charge Map Image

Not much space to park in Cyprus.

Open Charge Map Image

Below is a photo of a charging point User Interface.

Open Charge Map Image

Some people are kind enough to photograph the specifications on the sides of the charging point machines.

Open Charge Map Image

Photos often give away what sort of area you'll be waiting around in.

Open Charge Map Image

Building an Analysis-Ready Dataset

Below I'll denormalise the OCM dataset by connection. I'll also use the foreign keys to join to the reference datasets. The data will be first exported into JSONL before being imported into DuckDB using its internal file format.

$ python3
from   glob          import glob
import json
from   urllib.parse  import urlparse

from   rich.progress import track


# Lookups / Reference Data
recs = json.loads(open('referencedata.json', 'r').read())

lookups = {}

for x in recs.keys():
    lookups[x] = {}

    for rec in recs[x]:
        id_ = rec['ID']
        del rec['ID']
        lookups[x][id_] = rec

# Regions
regions = json.loads(open('/home/mark/ISO-Country-Data/regions.json', 'r').read())

# Connections
station_keys = (
    'DateLastVerified',
    'ID',
    'UUID',
    'DataProviderID',
    'UsageTypeID',
    'UsageCost',
    'NumberOfPoints',
    'StatusTypeID',
    'DateLastStatusUpdate',
    'DateCreated',
    'SubmissionStatusTypeID',
    'ProviderBrand')

with open('connections.json', 'w') as f:
    for filename in track(glob('*/OCM-*.json')):
        recs = json.loads(open(filename, 'r').read())

        if 'RelatedURL' in recs['AddressInfo']:
            recs['ProviderBrand'] = \
                urlparse(recs['AddressInfo']['RelatedURL'])\
                    .netloc\
                    .replace('www.', '')\
                    .split('.')[0]

        country_iso2 = filename.split('/')[0].upper().strip()

        region = None

        for region_, countries in regions.items():
            if country_iso2 in countries:
                region = region_
                break

        if region is None and country_iso2 == 'XK':
            region = 'southernEurope'

        dp_ = {} if 'DataProviderID' not in recs.keys()         else lookups['DataProviders'].get(recs['DataProviderID'], {})

        if 'DataProviderStatusType' in dp_.keys():
            for k, v in dp_['DataProviderStatusType'].items():
                dp_[k] = v
            del dp_['DataProviderStatusType']

        op_ = {} if 'OperatorID' not in recs.keys()             else lookups['Operators'].get(recs['OperatorID'], {})
        st_ = {} if 'StatusTypeID' not in recs.keys()           else lookups['StatusTypes'].get(recs['StatusTypeID'], {})
        us_ = {} if 'UsageTypeID' not in recs.keys()            else lookups['UsageTypes'].get(recs['UsageTypeID'], {})
        ss_ = {} if 'SubmissionStatusTypeID' not in recs.keys() else lookups['SubmissionStatusTypes'].get(recs['SubmissionStatusTypeID'], {})

        for rec in recs['Connections']:
            ct_ = {} if 'ConnectionTypeID' not in rec.keys() else lookups['ConnectionTypes'].get(rec['ConnectionTypeID'], {})
            cu_ = {} if 'CurrentTypeID' not in rec.keys()    else lookups['CurrentTypes'].get(rec['CurrentTypeID'], {})
            cs_ = {} if 'StatusTypeID' not in rec.keys()     else lookups['StatusTypes'].get(rec['StatusTypeID'], {})

            f.write(json.dumps({**{'AddressCountryIso2': country_iso2,
                                   'AddressWorldRegion': region},
                                **{'Connector' + k: v         for k, v in rec.items()},
                                **{'Address' + k: v         for k, v in recs['AddressInfo'].items()},
                                **{'DataProvider' + k: v         for k, v in dp_.items()},
                                **{'Operator' + k: v             for k, v in op_.items()},
                                **{'StatusType' + k: v           for k, v in st_.items()},
                                **{'UsageType' + k: v            for k, v in us_.items()},
                                **{'SubmissionStatusType' + k: v for k, v in ss_.items()},
                                **{'ConnectionType' + k: v       for k, v in ct_.items()},
                                **{'CurrentType' + k: v          for k, v in cu_.items()},
                                **{'ConnectionStatusType' + k: v for k, v in cs_.items()},
                                **{'Location' + k: recs.get(k, None)
                                for k in station_keys}}) + '\n')

The following will convert the JSONL into a DuckDB table using its internal file format.

$ ~/duckdb -c "CREATE OR REPLACE TABLE connections aS
                    SELECT *
                    FROM 'connections.json';" \
           connections.duckdb

The resulting DuckDB file is 98 MB and consists of 373,428 records. Below is an example record.

$ ~/duckdb -json \
           -c "SELECT *
               FROM connections
               WHERE AddressCountryIso2 = 'EE'
               LIMIT 1;" \
           connections.duckdb \
    | tail -n1 \
    | jq -S .
[
  {
    "AddressAccessComments": null,
    "AddressAddressLine1": "Mere Boulevard 7",
    "AddressAddressLine2": null,
    "AddressContactEmail": null,
    "AddressContactTelephone1": "+372 4473888",
    "AddressContactTelephone2": null,
    "AddressCountryID": 74,
    "AddressCountryIso2": "EE",
    "AddressDistanceUnit": 0,
    "AddressID": 103970,
    "AddressLatitude": 58.380532,
    "AddressLongitude": 24.491924,
    "AddressPostcode": "80010",
    "AddressRelatedURL": null,
    "AddressStateOrProvince": null,
    "AddressTitle": "Villa Ammende hotel and restaurant",
    "AddressTown": "Pรคrnu",
    "AddressWorldRegion": "northernEurope",
    "ConnectionStatusTypeIsOperational": true,
    "ConnectionStatusTypeIsUserSelectable": true,
    "ConnectionStatusTypeTitle": "Operational",
    "ConnectionTypeFormalName": null,
    "ConnectionTypeIsDiscontinued": false,
    "ConnectionTypeIsObsolete": false,
    "ConnectionTypeTitle": "Tesla (Model S/X)",
    "ConnectorAmps": 32,
    "ConnectorComments": null,
    "ConnectorConnectionTypeID": 30,
    "ConnectorCurrentTypeID": 20,
    "ConnectorID": 146294,
    "ConnectorLevelID": 2,
    "ConnectorPowerKW": 22,
    "ConnectorQuantity": 1,
    "ConnectorReference": null,
    "ConnectorStatusTypeID": 50,
    "ConnectorVoltage": 400,
    "CurrentTypeDescription": "Alternating Current - Three Phase",
    "CurrentTypeTitle": "AC (Three-Phase)",
    "DataProviderComments": null,
    "DataProviderDateLastImported": null,
    "DataProviderID": 1,
    "DataProviderIsApprovedImport": true,
    "DataProviderIsOpenDataLicensed": true,
    "DataProviderIsProviderEnabled": true,
    "DataProviderIsRestrictedEdit": false,
    "DataProviderLicense": "Licensed under Creative Commons Attribution 4.0 International (CC BY 4.0)",
    "DataProviderTitle": "Manual Data Entry",
    "DataProviderWebsiteURL": "http://openchargemap.org",
    "LocationDataProviderID": 1,
    "LocationDateCreated": "2018-05-05 05:44:00",
    "LocationDateLastStatusUpdate": "2020-07-27 14:52:00",
    "LocationDateLastVerified": "2020-07-27 14:52:00",
    "LocationID": 103624,
    "LocationNumberOfPoints": 2,
    "LocationProviderBrand": null,
    "LocationStatusTypeID": 50,
    "LocationSubmissionStatusTypeID": 200,
    "LocationUUID": "56ae3b26-c6c0-4770-98bb-aa2beb850147",
    "LocationUsageCost": null,
    "LocationUsageTypeID": 4,
    "OperatorAddressInfo": null,
    "OperatorBookingURL": null,
    "OperatorComments": null,
    "OperatorContactEmail": null,
    "OperatorFaultReportEmail": null,
    "OperatorIsPrivateIndividual": false,
    "OperatorIsRestrictedEdit": false,
    "OperatorPhonePrimaryContact": null,
    "OperatorPhoneSecondaryContact": null,
    "OperatorTitle": "Tesla (Tesla-only charging)",
    "OperatorWebsiteURL": "http://www.teslamotors.com",
    "StatusTypeIsOperational": true,
    "StatusTypeIsUserSelectable": true,
    "StatusTypeTitle": "Operational",
    "SubmissionStatusTypeIsLive": true,
    "SubmissionStatusTypeTitle": "Submission Published",
    "UsageTypeIsAccessKeyRequired": true,
    "UsageTypeIsMembershipRequired": true,
    "UsageTypeIsPayAtLocation": false,
    "UsageTypeTitle": "Public - Membership Required"
  }
]

Charging Points Around The World

I'll break down the number of charging locations by region. These will be broken up into categories of how many stations / bays are available at each location. So far, there is only one location in the world, located in Sweden, with more than 500 bays.

$ ~/duckdb connections.duckdb
SELECT   AddressWorldRegion,
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints == 1)   AS "1",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 2    AND LocationNumberOfPoints < 5)   AS "2_4",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 5    AND LocationNumberOfPoints < 20)  AS "5_19",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 20   AND LocationNumberOfPoints < 50)  AS "20_49",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 50   AND LocationNumberOfPoints < 500) AS "50_499",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 500) AS "500_plus",
FROM     connections
GROUP BY AddressWorldRegion
ORDER BY 2 DESC;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ AddressWorldRegion โ”‚   1   โ”‚  2_4  โ”‚ 5_19  โ”‚ 20_49 โ”‚ 50_499 โ”‚ 500_plus โ”‚
โ”‚      varchar       โ”‚ int64 โ”‚ int64 โ”‚ int64 โ”‚ int64 โ”‚ int64  โ”‚  int64   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ westernEurope      โ”‚ 11561 โ”‚ 13919 โ”‚  1561 โ”‚   122 โ”‚     10 โ”‚        0 โ”‚
โ”‚ northernEurope     โ”‚  7861 โ”‚ 16216 โ”‚  5126 โ”‚   418 โ”‚     98 โ”‚        1 โ”‚
โ”‚ southernEurope     โ”‚  6676 โ”‚ 17910 โ”‚  1607 โ”‚    80 โ”‚     10 โ”‚        0 โ”‚
โ”‚ northernAmerica    โ”‚  3634 โ”‚  5589 โ”‚  2458 โ”‚   193 โ”‚     13 โ”‚        0 โ”‚
โ”‚ easternEurope      โ”‚  2630 โ”‚  1590 โ”‚    68 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ australia          โ”‚   906 โ”‚   989 โ”‚   136 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ westernAsia        โ”‚   774 โ”‚   360 โ”‚    37 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ eastAsia           โ”‚   446 โ”‚   148 โ”‚    25 โ”‚    18 โ”‚      0 โ”‚        0 โ”‚
โ”‚ caribbean          โ”‚   341 โ”‚    39 โ”‚     0 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ southAmerica       โ”‚   267 โ”‚    95 โ”‚     7 โ”‚     2 โ”‚      0 โ”‚        0 โ”‚
โ”‚ southeastAsia      โ”‚   247 โ”‚   162 โ”‚    12 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ polynesia          โ”‚   156 โ”‚     7 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ centralAmerica     โ”‚   115 โ”‚    45 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ northAfrica        โ”‚    98 โ”‚    49 โ”‚     3 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ southernAsia       โ”‚    91 โ”‚    30 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ southernAfrica     โ”‚    35 โ”‚   107 โ”‚     0 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ eastAfrica         โ”‚    15 โ”‚     7 โ”‚     2 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ westAfrica         โ”‚     2 โ”‚     0 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ centralAsia        โ”‚     2 โ”‚     1 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 19 rows                                                      7 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

This is a breakdown for countries outside of Europe, North America and Australia. Some of these countries are fairly small and have very good charging point coverage but others, I suspect, are vastly underrepresented in this dataset, like China with 126 locations listed.

SELECT   AddressCountryIso2,
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints == 1)   AS "1",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 2    AND LocationNumberOfPoints < 5)   AS "2_4",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 5    AND LocationNumberOfPoints < 20)  AS "5_19",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 20   AND LocationNumberOfPoints < 50)  AS "20_49",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 50   AND LocationNumberOfPoints < 500) AS "50_499",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE LocationNumberOfPoints >= 500) AS "500_plus",
FROM     connections
WHERE    AddressWorldRegion NOT LIKE '%Europe'
AND      AddressWorldRegion != 'northernAmerica'
AND      AddressCountryIso2 != 'AU'
GROUP BY AddressCountryIso2
ORDER BY 2 DESC
LIMIT 20;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ AddressCountryIso2 โ”‚   1   โ”‚  2_4  โ”‚ 5_19  โ”‚ 20_49 โ”‚ 50_499 โ”‚ 500_plus โ”‚
โ”‚      varchar       โ”‚ int64 โ”‚ int64 โ”‚ int64 โ”‚ int64 โ”‚ int64  โ”‚  int64   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ TR                 โ”‚   522 โ”‚   177 โ”‚    13 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ NZ                 โ”‚   389 โ”‚   510 โ”‚    72 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ DO                 โ”‚   331 โ”‚     6 โ”‚     0 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ JP                 โ”‚   226 โ”‚    13 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ BR                 โ”‚   206 โ”‚    51 โ”‚     3 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ IL                 โ”‚   166 โ”‚    81 โ”‚    20 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ CL                 โ”‚   156 โ”‚     7 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ CN                 โ”‚   121 โ”‚     4 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ CR                 โ”‚   111 โ”‚    45 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ ID                 โ”‚   110 โ”‚    78 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ MY                 โ”‚    95 โ”‚    78 โ”‚    10 โ”‚     1 โ”‚      0 โ”‚        0 โ”‚
โ”‚ MA                 โ”‚    71 โ”‚    29 โ”‚     2 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ HK                 โ”‚    67 โ”‚   117 โ”‚    20 โ”‚    18 โ”‚      0 โ”‚        0 โ”‚
โ”‚ IN                 โ”‚    48 โ”‚    13 โ”‚     0 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ AE                 โ”‚    48 โ”‚    65 โ”‚     4 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ LK                 โ”‚    40 โ”‚    16 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ ZA                 โ”‚    34 โ”‚   106 โ”‚     0 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ JO                 โ”‚    34 โ”‚    34 โ”‚     0 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ TW                 โ”‚    32 โ”‚    12 โ”‚     3 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”‚ UY                 โ”‚    25 โ”‚     9 โ”‚     1 โ”‚     0 โ”‚      0 โ”‚        0 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 20 rows                                                      7 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Much of the data has been submitted by volunteers but there are also official sources as well. Below are the most significant official sources broken down by region.

SELECT   AddressWorldRegion,
         REPLACE(SPLIT_PART(REPLACE(REPLACE(DataProviderWebsiteURL, 'http://', ''), 'https://', ''), '/', 1), 'www.', '') AS domain,
         COUNT(DISTINCT LocationUUID) n_locations
FROM     connections
WHERE    DataProviderWebsiteURL != 'http://openchargemap.org'
GROUP BY 1, 2
HAVING   n_locations > 50
ORDER BY 1, 3 DESC;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ AddressWorldRegion โ”‚         domain          โ”‚ n_locations โ”‚
โ”‚      varchar       โ”‚         varchar         โ”‚    int64    โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ eastAsia           โ”‚ chademo.com             โ”‚        1268 โ”‚
โ”‚ eastAsia           โ”‚ oplaadpalen.nl          โ”‚         182 โ”‚
โ”‚ eastAsia           โ”‚ carstations.com         โ”‚         117 โ”‚
โ”‚ easternEurope      โ”‚ sitronics-electro.com   โ”‚          93 โ”‚
โ”‚ northernAmerica    โ”‚ afdc.energy.gov         โ”‚       57074 โ”‚
โ”‚ northernAmerica    โ”‚ carstations.com         โ”‚        2464 โ”‚
โ”‚ northernEurope     โ”‚ chargepoints.dft.gov.uk โ”‚       11864 โ”‚
โ”‚ northernEurope     โ”‚ nobil.no                โ”‚        9081 โ”‚
โ”‚ northernEurope     โ”‚ ev.lakd.lt              โ”‚         234 โ”‚
โ”‚ southernEurope     โ”‚ mobie.pt                โ”‚         751 โ”‚
โ”‚ southernEurope     โ”‚ oplaadpalen.nl          โ”‚          59 โ”‚
โ”‚ westernEurope      โ”‚ bundesnetzagentur.de    โ”‚       10533 โ”‚
โ”‚ westernEurope      โ”‚ data.gouv.fr            โ”‚       10230 โ”‚
โ”‚ westernEurope      โ”‚ oplaadpalen.nl          โ”‚        7698 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 14 rows                                          3 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

There has been a move to either partly or fully automate data imports. Below is a breakdown by each location's last update as to which process was used to refresh its record.

SELECT   SUBSTR(LocationDateLastStatusUpdate::TEXT, 1, 4) last_update,
         COUNT(DISTINCT LocationUUID) FILTER (WHERE DataProviderTitle = 'Manual Data Entry') as manual,
         COUNT(DISTINCT LocationUUID) FILTER (WHERE DataProviderTitle = 'Partially Automated (Ad-Hoc Import)') as partly,
         COUNT(DISTINCT LocationUUID) FILTER (WHERE DataProviderTitle = 'Automated Import') as automated
FROM     connections
GROUP BY last_update
ORDER BY last_update DESC;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ last_update โ”‚ manual โ”‚ partly โ”‚ automated โ”‚
โ”‚   varchar   โ”‚ int64  โ”‚ int64  โ”‚   int64   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 2024        โ”‚   5362 โ”‚   6288 โ”‚     42766 โ”‚
โ”‚ 2023        โ”‚  25136 โ”‚   2764 โ”‚     17231 โ”‚
โ”‚ 2022        โ”‚  11433 โ”‚      0 โ”‚      5729 โ”‚
โ”‚ 2021        โ”‚   5590 โ”‚    253 โ”‚     10592 โ”‚
โ”‚ 2020        โ”‚   9507 โ”‚      7 โ”‚      9275 โ”‚
โ”‚ 2019        โ”‚   7478 โ”‚    127 โ”‚      4861 โ”‚
โ”‚ 2018        โ”‚   8151 โ”‚      1 โ”‚        25 โ”‚
โ”‚ 2017        โ”‚   8546 โ”‚      1 โ”‚      2484 โ”‚
โ”‚ 2016        โ”‚   4568 โ”‚     18 โ”‚      7857 โ”‚
โ”‚ 2015        โ”‚   3902 โ”‚      0 โ”‚       105 โ”‚
โ”‚ 2014        โ”‚    650 โ”‚      0 โ”‚       120 โ”‚
โ”‚ 2013        โ”‚    523 โ”‚      0 โ”‚         3 โ”‚
โ”‚ 2012        โ”‚    182 โ”‚      1 โ”‚         0 โ”‚
โ”‚ 2011        โ”‚     89 โ”‚      0 โ”‚         0 โ”‚
โ”‚ 2010        โ”‚     25 โ”‚      0 โ”‚         0 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 15 rows                         4 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

There has been a considerable amount of effort put into refreshing data. Below is a breakdown of the number of locations refreshed before and after 2021.

SELECT   AddressWorldRegion,
         COUNT(DISTINCT LocationUUID) FILTER (WHERE SUBSTR(LocationDateLastVerified::VARCHAR, 1, 4)::INT < 2021)  AS "before_2021",
         COUNT(DISTINCT LocationUUID) FILTER (WHERE SUBSTR(LocationDateLastVerified::VARCHAR, 1, 4)::INT >= 2021) AS "2021_onward"
FROM     connections
GROUP BY AddressWorldRegion
ORDER BY 2 DESC;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ AddressWorldRegion โ”‚ before_2021 โ”‚ 2021_onward โ”‚
โ”‚      varchar       โ”‚    int64    โ”‚    int64    โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ westernEurope      โ”‚       28264 โ”‚       19871 โ”‚
โ”‚ northernAmerica    โ”‚       19253 โ”‚       53468 โ”‚
โ”‚ northernEurope     โ”‚       10155 โ”‚       32841 โ”‚
โ”‚ southernEurope     โ”‚        7443 โ”‚       19981 โ”‚
โ”‚ eastAsia           โ”‚        1860 โ”‚          46 โ”‚
โ”‚ easternEurope      โ”‚        1758 โ”‚        2650 โ”‚
โ”‚ australia          โ”‚         480 โ”‚        1560 โ”‚
โ”‚ westernAsia        โ”‚         388 โ”‚         943 โ”‚
โ”‚ centralAmerica     โ”‚          52 โ”‚         109 โ”‚
โ”‚ southeastAsia      โ”‚          37 โ”‚         385 โ”‚
โ”‚ southernAsia       โ”‚          21 โ”‚         101 โ”‚
โ”‚ southernAfrica     โ”‚          16 โ”‚         126 โ”‚
โ”‚ southAmerica       โ”‚          15 โ”‚         357 โ”‚
โ”‚ northAfrica        โ”‚          13 โ”‚         137 โ”‚
โ”‚ caribbean          โ”‚           9 โ”‚         371 โ”‚
โ”‚ polynesia          โ”‚           5 โ”‚         172 โ”‚
โ”‚ eastAfrica         โ”‚           3 โ”‚          21 โ”‚
โ”‚ centralAsia        โ”‚           2 โ”‚           2 โ”‚
โ”‚ westAfrica         โ”‚           0 โ”‚           3 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 19 rows                              3 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Charging Point Operators

ChargePoint, Tesla, BlinkCharging, flo and Shell Recharge Solutions are the most significant operators with more than 3K locations and a significant presence outside of their home market.

CREATE OR REPLACE TEMPORARY TABLE op_locations AS
    SELECT   SPLIT_PART(OperatorTitle, ' (', 1) AS OperatorTitle,
             AddressCountryIso2,
             COUNT(DISTINCT LocationUUID) n_locations
    FROM     connections
    WHERE    LENGTH(OperatorTitle) > 1
    AND      OperatorTitle NOT LIKE '(Unknown Operator)'
    AND      OperatorTitle NOT LIKE '(Business Owner at Location)'
    GROUP BY 1, 2
    HAVING   n_locations > 1000;

CREATE OR REPLACE TEMPORARY TABLE op_locations_fillin AS
    SELECT SPLIT_PART(OperatorTitle, ' (', 1) AS OperatorTitle,
           AddressCountryIso2,
           COUNT(DISTINCT LocationUUID) n_locations
    FROM   connections
    WHERE  SPLIT_PART(OperatorTitle, ' (', 1) IN (
                SELECT DISTINCT OperatorTitle
                FROM            op_locations)
    AND    AddressCountryIso2 IN (
                SELECT DISTINCT AddressCountryIso2
                FROM            op_locations)
    GROUP BY 1, 2;

WITH pivot_alias AS (
    PIVOT    op_locations_fillin
    ON       AddressCountryIso2
    USING    SUM(n_locations)
    GROUP BY OperatorTitle
)
SELECT   OperatorTitle,
         US,
         CA,
         * EXCLUDE(OperatorTitle, US, CA)
FROM     pivot_alias
ORDER BY US DESC;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚      OperatorTitle       โ”‚   US   โ”‚   CA   โ”‚   DE   โ”‚   ES   โ”‚   FR   โ”‚   GB   โ”‚   IT   โ”‚   NL   โ”‚   PT   โ”‚
โ”‚         varchar          โ”‚ int128 โ”‚ int128 โ”‚ int128 โ”‚ int128 โ”‚ int128 โ”‚ int128 โ”‚ int128 โ”‚ int128 โ”‚ int128 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ ChargePoint              โ”‚  23374 โ”‚   2483 โ”‚     19 โ”‚        โ”‚     53 โ”‚    317 โ”‚     14 โ”‚     20 โ”‚        โ”‚
โ”‚ Tesla                    โ”‚   7242 โ”‚    825 โ”‚    790 โ”‚     83 โ”‚    532 โ”‚    631 โ”‚    711 โ”‚    128 โ”‚    178 โ”‚
โ”‚ Blink Charging           โ”‚   6432 โ”‚     27 โ”‚        โ”‚        โ”‚        โ”‚    552 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ EV Connect               โ”‚   1687 โ”‚     64 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Shell Recharge Solutions โ”‚   1289 โ”‚     95 โ”‚    823 โ”‚        โ”‚      4 โ”‚    273 โ”‚      1 โ”‚   1228 โ”‚        โ”‚
โ”‚ eVgo Network             โ”‚   1220 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ PEA Volta                โ”‚   1191 โ”‚      1 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ flo                      โ”‚    783 โ”‚   2958 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Enel X                   โ”‚     16 โ”‚        โ”‚        โ”‚      1 โ”‚        โ”‚      2 โ”‚   4124 โ”‚        โ”‚        โ”‚
โ”‚ EV-Box                   โ”‚      3 โ”‚        โ”‚      9 โ”‚        โ”‚      3 โ”‚     17 โ”‚     24 โ”‚   2055 โ”‚        โ”‚
โ”‚ Endesa                   โ”‚        โ”‚        โ”‚        โ”‚   1291 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Izivia                   โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   1406 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Mobie.pt                 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   1769 โ”‚
โ”‚ EVnetNL                  โ”‚        โ”‚        โ”‚      6 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   1788 โ”‚        โ”‚
โ”‚ ubitricity               โ”‚        โ”‚        โ”‚     57 โ”‚        โ”‚      3 โ”‚   5253 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ POD Point                โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   3342 โ”‚        โ”‚      1 โ”‚        โ”‚
โ”‚ Chargeplace Scotland     โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   1359 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Innogy SE                โ”‚        โ”‚        โ”‚   2205 โ”‚        โ”‚        โ”‚      1 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Circuit Electrique       โ”‚        โ”‚   2089 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ EnBW                     โ”‚        โ”‚        โ”‚   1268 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Char.gy                  โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   2862 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Source London            โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   1172 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Mercadona                โ”‚        โ”‚        โ”‚        โ”‚   1071 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ BP Pulse                 โ”‚        โ”‚        โ”‚        โ”‚     73 โ”‚        โ”‚   2157 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ SureCharge               โ”‚        โ”‚        โ”‚        โ”‚        โ”‚        โ”‚   1780 โ”‚        โ”‚        โ”‚        โ”‚
โ”‚ Iberdrola                โ”‚        โ”‚        โ”‚        โ”‚   1734 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚     36 โ”‚
โ”‚ ladenetz.de              โ”‚        โ”‚        โ”‚   1488 โ”‚        โ”‚        โ”‚        โ”‚        โ”‚      2 โ”‚        โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 27 rows                                                                                        10 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Charging Infrastructure

Below are the most popular connection types in Europe.

SELECT   ConnectionTypeTitle,
         COUNT(*)
FROM     connections
WHERE    AddressWorldRegion LIKE '%Europe'
GROUP BY 1
ORDER BY 2 DESC
LIMIT    10;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚        ConnectionTypeTitle        โ”‚ count_star() โ”‚
โ”‚              varchar              โ”‚    int64     โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Type 2 (Socket Only)              โ”‚       147088 โ”‚
โ”‚ CCS (Type 2)                      โ”‚        32961 โ”‚
โ”‚ CEE 7/4 - Schuko - Type F         โ”‚        23758 โ”‚
โ”‚ Type 2 (Tethered Connector)       โ”‚        22946 โ”‚
โ”‚ CHAdeMO                           โ”‚        21898 โ”‚
โ”‚ Unknown                           โ”‚        12391 โ”‚
โ”‚ Tesla (Model S/X)                 โ”‚         4749 โ”‚
โ”‚ SCAME Type 3A (Low Power)         โ”‚         2257 โ”‚
โ”‚ SCAME Type 3C (Schneider-Legrand) โ”‚         2159 โ”‚
โ”‚ Type 1 (J1772)                    โ”‚         1445 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 10 rows                                2 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Below are the most popular connection types in North America.

SELECT   ConnectionTypeTitle,
         COUNT(*)
FROM     connections
WHERE    AddressWorldRegion = 'northernAmerica'
GROUP BY 1
ORDER BY 2 DESC
LIMIT    10;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚    ConnectionTypeTitle    โ”‚ count_star() โ”‚
โ”‚          varchar          โ”‚    int64     โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Type 1 (J1772)            โ”‚        56622 โ”‚
โ”‚ CCS (Type 1)              โ”‚         9869 โ”‚
โ”‚ CHAdeMO                   โ”‚         7554 โ”‚
โ”‚ Tesla (Model S/X)         โ”‚         6356 โ”‚
โ”‚ NACS / Tesla Supercharger โ”‚         2663 โ”‚
โ”‚ NEMA 5-20R                โ”‚         1375 โ”‚
โ”‚ Unknown                   โ”‚          443 โ”‚
โ”‚ NEMA 5-15R                โ”‚          247 โ”‚
โ”‚ NEMA 14-50                โ”‚          231 โ”‚
โ”‚ Avcon Connector           โ”‚           44 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 10 rows                        2 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

There is a wide variety of power delivery specifications for each connection type. These are the most popular in Europe.

SELECT   ConnectionTypeTitle          AS Connector,
         ConnectorVoltage             AS Voltage,
         ConnectorAmps                AS Amps,
         ConnectorPowerKW             AS PowerKW,
         CurrentTypeTitle             AS Current,
         COUNT(DISTINCT LocationUUID) AS n_locations
FROM     connections
WHERE    AddressWorldRegion LIKE '%Europe'
AND      ConnectorVoltage > 0
GROUP BY 1, 2, 3, 4, 5
ORDER BY 6 DESC
LIMIT    20;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚          Connector           โ”‚ Voltage โ”‚ Amps  โ”‚ PowerKW โ”‚      Current      โ”‚ n_locations โ”‚
โ”‚           varchar            โ”‚  int64  โ”‚ int64 โ”‚ double  โ”‚      varchar      โ”‚    int64    โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Type 2 (Socket Only)         โ”‚     400 โ”‚    32 โ”‚    22.0 โ”‚ AC (Three-Phase)  โ”‚       22279 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     230 โ”‚    32 โ”‚     7.0 โ”‚ AC (Single-Phase) โ”‚        7525 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     230 โ”‚    16 โ”‚     3.7 โ”‚ AC (Single-Phase) โ”‚        5311 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     400 โ”‚    16 โ”‚    11.0 โ”‚ AC (Three-Phase)  โ”‚        4032 โ”‚
โ”‚ CEE 7/4 - Schuko - Type F    โ”‚     230 โ”‚    16 โ”‚     3.7 โ”‚ AC (Single-Phase) โ”‚        3202 โ”‚
โ”‚ Type 2 (Tethered Connector)  โ”‚     400 โ”‚    63 โ”‚    43.0 โ”‚ AC (Three-Phase)  โ”‚        2089 โ”‚
โ”‚ CHAdeMO                      โ”‚     400 โ”‚   125 โ”‚    50.0 โ”‚ DC                โ”‚        1819 โ”‚
โ”‚ Tesla (Model S/X)            โ”‚     400 โ”‚    32 โ”‚    22.0 โ”‚ AC (Three-Phase)  โ”‚        1811 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     220 โ”‚     7 โ”‚     4.8 โ”‚ AC (Single-Phase) โ”‚        1797 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     230 โ”‚    22 โ”‚     5.1 โ”‚ AC (Single-Phase) โ”‚        1771 โ”‚
โ”‚ Type 2 (Tethered Connector)  โ”‚     400 โ”‚    32 โ”‚    22.0 โ”‚ AC (Three-Phase)  โ”‚        1712 โ”‚
โ”‚ CHAdeMO                      โ”‚     500 โ”‚   100 โ”‚    50.0 โ”‚ DC                โ”‚        1613 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     230 โ”‚     7 โ”‚     5.0 โ”‚ AC (Single-Phase) โ”‚        1582 โ”‚
โ”‚ SCAME Type 3A (Low Power)    โ”‚     240 โ”‚    16 โ”‚     3.7 โ”‚ AC (Single-Phase) โ”‚        1495 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     400 โ”‚    32 โ”‚    22.0 โ”‚ DC                โ”‚        1450 โ”‚
โ”‚ Unknown                      โ”‚     230 โ”‚    16 โ”‚     3.7 โ”‚                   โ”‚        1414 โ”‚
โ”‚ CCS (Type 2)                 โ”‚     500 โ”‚   100 โ”‚    50.0 โ”‚ DC                โ”‚        1051 โ”‚
โ”‚ Type 2 (Socket Only)         โ”‚     230 โ”‚    32 โ”‚     7.4 โ”‚ AC (Single-Phase) โ”‚        1036 โ”‚
โ”‚ CHAdeMO                      โ”‚     500 โ”‚   120 โ”‚    50.0 โ”‚ DC                โ”‚        1016 โ”‚
โ”‚ CCS (Type 2)                 โ”‚     400 โ”‚   125 โ”‚    50.0 โ”‚ DC                โ”‚        1003 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 20 rows                                                                          6 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

These are the most popular in North America.

SELECT   ConnectionTypeTitle,
         ConnectorVoltage,
         ConnectorAmps,
         ConnectorPowerKW,
         CurrentTypeTitle,
         COUNT(DISTINCT LocationUUID) n_locations
FROM     connections
WHERE    AddressWorldRegion = 'northernAmerica'
AND      ConnectorVoltage > 0
GROUP BY 1, 2, 3, 4, 5
ORDER BY 6 DESC
LIMIT    20;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ ConnectionTypeTitle โ”‚ ConnectorVoltage โ”‚ ConnectorAmps โ”‚ ConnectorPowerKW โ”‚ CurrentTypeTitle  โ”‚ n_locations โ”‚
โ”‚       varchar       โ”‚      int64       โ”‚     int64     โ”‚      double      โ”‚      varchar      โ”‚    int64    โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Type 1 (J1772)      โ”‚              230 โ”‚            16 โ”‚              3.7 โ”‚ AC (Single-Phase) โ”‚       45891 โ”‚
โ”‚ Type 1 (J1772)      โ”‚              230 โ”‚            16 โ”‚              3.0 โ”‚ AC (Single-Phase) โ”‚        4842 โ”‚
โ”‚ Tesla (Model S/X)   โ”‚              230 โ”‚            16 โ”‚              3.7 โ”‚ AC (Single-Phase) โ”‚        1419 โ”‚
โ”‚ CCS (Type 1)        โ”‚              400 โ”‚           100 โ”‚             40.0 โ”‚ DC                โ”‚        1338 โ”‚
โ”‚ CHAdeMO             โ”‚              400 โ”‚           100 โ”‚             40.0 โ”‚ DC                โ”‚        1180 โ”‚
โ”‚ Type 1 (J1772)      โ”‚              230 โ”‚            32 โ”‚              7.0 โ”‚ AC (Single-Phase) โ”‚         698 โ”‚
โ”‚ Tesla (Model S/X)   โ”‚              230 โ”‚            16 โ”‚             16.0 โ”‚ AC (Single-Phase) โ”‚         568 โ”‚
โ”‚ Tesla (Model S/X)   โ”‚              230 โ”‚            16 โ”‚              8.0 โ”‚ AC (Single-Phase) โ”‚         433 โ”‚
โ”‚ NEMA 5-20R          โ”‚              120 โ”‚            16 โ”‚              1.9 โ”‚ AC (Single-Phase) โ”‚         414 โ”‚
โ”‚ NEMA 5-20R          โ”‚              120 โ”‚            16 โ”‚              1.0 โ”‚ AC (Single-Phase) โ”‚         233 โ”‚
โ”‚ NEMA 5-15R          โ”‚              120 โ”‚            16 โ”‚              1.9 โ”‚ AC (Single-Phase) โ”‚         222 โ”‚
โ”‚ Tesla (Model S/X)   โ”‚              230 โ”‚            16 โ”‚             13.0 โ”‚ AC (Single-Phase) โ”‚         165 โ”‚
โ”‚ CCS (Type 1)        โ”‚              400 โ”‚           100 โ”‚             40.0 โ”‚ AC (Single-Phase) โ”‚         123 โ”‚
โ”‚ NEMA 14-50          โ”‚              120 โ”‚            16 โ”‚              1.9 โ”‚ AC (Single-Phase) โ”‚         123 โ”‚
โ”‚ Unknown             โ”‚              230 โ”‚            16 โ”‚              3.0 โ”‚ AC (Single-Phase) โ”‚         113 โ”‚
โ”‚ CHAdeMO             โ”‚              400 โ”‚           100 โ”‚             40.0 โ”‚ AC (Single-Phase) โ”‚         111 โ”‚
โ”‚ Type 1 (J1772)      โ”‚              240 โ”‚            72 โ”‚             17.3 โ”‚                   โ”‚         110 โ”‚
โ”‚ CCS (Type 1)        โ”‚              400 โ”‚           125 โ”‚             50.0 โ”‚ DC                โ”‚          92 โ”‚
โ”‚ CHAdeMO             โ”‚              400 โ”‚           125 โ”‚             50.0 โ”‚ DC                โ”‚          92 โ”‚
โ”‚ Unknown             โ”‚              120 โ”‚            16 โ”‚              1.9 โ”‚ AC (Single-Phase) โ”‚          50 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 20 rows                                                                                           6 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Looking at the most popular connection and power delivery combination for North America, it's not one but many operators that offer this combination.

SELECT   OperatorTitle,
         ConnectionTypeTitle,
         COUNT(DISTINCT LocationUUID) n_locations
FROM     connections
WHERE    ConnectorVoltage = 230
AND      ConnectorAmps = 16
AND      ConnectorPowerKW = 3.7
AND      CurrentTypeTitle = 'AC (Single-Phase)'
AND      LENGTH(OperatorTitle) > 1
AND      AddressWorldRegion = 'northernAmerica'
GROUP BY 1, 2
ORDER BY 3 DESC
LIMIT    20;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚           OperatorTitle           โ”‚ ConnectionTypeTitle โ”‚ n_locations โ”‚
โ”‚              varchar              โ”‚       varchar       โ”‚    int64    โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ ChargePoint                       โ”‚ Type 1 (J1772)      โ”‚       18837 โ”‚
โ”‚ Blink Charging                    โ”‚ Type 1 (J1772)      โ”‚        5770 โ”‚
โ”‚ flo                               โ”‚ Type 1 (J1772)      โ”‚        2654 โ”‚
โ”‚ Circuit Electrique                โ”‚ Type 1 (J1772)      โ”‚        1718 โ”‚
โ”‚ EV Connect                        โ”‚ Type 1 (J1772)      โ”‚        1193 โ”‚
โ”‚ Tesla (Tesla-only charging)       โ”‚ Tesla (Model S/X)   โ”‚        1184 โ”‚
โ”‚ PEA Volta                         โ”‚ Type 1 (J1772)      โ”‚        1141 โ”‚
โ”‚ Shell Recharge Solutions (US)     โ”‚ Type 1 (J1772)      โ”‚         882 โ”‚
โ”‚ AmpUp                             โ”‚ Type 1 (J1772)      โ”‚         764 โ”‚
โ”‚ SWTCH - Charge Everywhere         โ”‚ Type 1 (J1772)      โ”‚         482 โ”‚
โ”‚ SemaConnect                       โ”‚ Type 1 (J1772)      โ”‚         394 โ”‚
โ”‚ Livingston Charge Port            โ”‚ Type 1 (J1772)      โ”‚         325 โ”‚
โ”‚ OpConnect                         โ”‚ Type 1 (J1772)      โ”‚         296 โ”‚
โ”‚ eVgo Network                      โ”‚ Type 1 (J1772)      โ”‚         230 โ”‚
โ”‚ GE WattStation (No longer active) โ”‚ Type 1 (J1772)      โ”‚         162 โ”‚
โ”‚ Rivian Waypoints L2 Network       โ”‚ Type 1 (J1772)      โ”‚         160 โ”‚
โ”‚ ChargeUp (NovaCharge)             โ”‚ Type 1 (J1772)      โ”‚         146 โ”‚
โ”‚ Universal EV Charging             โ”‚ Type 1 (J1772)      โ”‚         143 โ”‚
โ”‚ Blink Charging (Europe)           โ”‚ Type 1 (J1772)      โ”‚         136 โ”‚
โ”‚ Powerflex                         โ”‚ Type 1 (J1772)      โ”‚         134 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 20 rows                                                     3 columns โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Charging Point Access

In terms of location access, the vast majority are publically available. Of those that are private, they still might be accessible as both "For Staff, Visitors or Customers" and "Privately Owned - Notice Required" are included in the 16,229 locations below.

SELECT COUNT(DISTINCT LocationUUID) FILTER (WHERE UsageTypeTitle LIKE 'Public%') AS public,
       COUNT(DISTINCT LocationUUID) FILTER (WHERE UsageTypeTitle LIKE 'Private%') AS private,
       COUNT(DISTINCT LocationUUID) FILTER (WHERE UsageTypeTitle NOT LIKE 'Public%'
                                            AND   UsageTypeTitle NOT LIKE 'Private%') AS unknown,
FROM connections
ORDER BY 1 DESC;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ public โ”‚ private โ”‚ unknown โ”‚
โ”‚ int64  โ”‚  int64  โ”‚  int64  โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 150481 โ”‚   16229 โ”‚     657 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
Thank you for taking the time to read this post. I offer both consulting and hands-on development services to clients in North America and Europe. If you'd like to discuss how my offerings can help your business please contact me via LinkedIn.

Copyright © 2014 - 2024 Mark Litwintschik. This site's template is based off a template by Giulio Fidente.