State of Charge - June 1st, 2025
For the week of May 25th to May 31st the Alternative Fuel Data Center has posted 24 new charging stations in the United States! All of which have been uploaded to OSM. To subscribe to these changes in OSM and to see an archive of .csv
and .geojson
files please add the RSS feed to your favorite reader. All links and files are also centrally located on the OSM Wiki as the United States AFDC Manual Sync Project.
Insights from this week
- During the conflation step with existing OSM data, there were zero items to conflate. One item, the new Mercedes-Benz High Power Charging station in Ellenton, Florida showed for conflation, but was a false positive since an Electrify America and Tesla Supercharger both share the parking lot with this station – Plenty of electrons to go around!
- Of the 24 new stations, 8 are continuing the trend of adding charging stations to car dealerships. No pricing was in the AFDC for these stations but these are often set very high to discourage use from non-customers and during peak-hours. There is currently not a way to elegantly describe the facility or facility type for charging stations, so I have taken to adding them to the
description=*
field. - No new Tesla Superchargers this week, but that does not mean none opened, Tesla tends to update the AFDC in batches, so please add these stations as you see them but if not, they will be included in the next batch when Tesla releases the data!
New in the Charging Station OSM world
I have started a new project of cleaning up existing OSM charging station data, mainly consisting of using the following Overpass query to find stations with the same name, operator, or brand nearby eachother:
rel(162050);map_to_area->.state; // Florida, U.S.A.
nwr[amenity=charging_station](area.state)->.allStations;
foreach.allStations->.station(
nwr(around.station:100)(if:t["operator"]==station.u(t["operator"])||t["name"]==station.u(t["name"])||t["brand"]==station.u(t["brand"]))
[amenity=charging_station]->.new;
((.new; - .station;);.adjacent;)->.adjacent;);
.adjacent out;
The issue is many of these “stations” are actually “charge points” much like a “gas station” is not a “gas pump”. Where only the charge points exist, and there is more than 1 of them, I add a station node in the center to capture or retain the station specific information to avoid information loss. So far the following states have been updated:
- Georgia
- South Carolina
- Florida
Once the 50 states are cleaned up and updating weekly, the project of importing the entire AFDC database and conflating it to existing OSM data can begin. Until then, I am more than happy to work with contributors on your own area / state if you’d like! Just shoot me a message on the OSM US Slack or here!