Home

Awesome

GeoNuclearData

This repository contains a database with information about Nuclear Power Plants worldwide.

Version

Database version: 0.17.0 (2020/04/19)
Dataset last updated in version: 0.17.17 (2024/03/03)

Changelog

See CHANGELOG file for details.

Data formats

Data is available in multiple formats (MySQL, JSON, and CSV).

Quick database summary (by reactor status)

StatusCountDiff
Unknown1
Planned79-1
Under Construction61+1
Operational414+3
Suspended Operation25-2
Shutdown209
Suspended Construction6
Cancelled Construction4
Never Commissioned2
Decommissioning Completed30
Total804+1

Tables structure

countries

nuclear_power_plant_status_type

nuclear_reactor_type

nuclear_power_plants

Notes

Data from source, last_updated_at, and iaea_id columns is for maintenance purposes only and is not recommended to be used.

Known Inconsistencies (GeoNuclearData vs. WNA vs. IAEA PRIS)

Operational Reactors

Reactors Under Construction

Naming

Coordinates

Usage

SELECT npp.`id`
    , npp.`name`
    , npp.latitude
    , npp.longitude
    , c.`name` 'country'
    , s.type 'status'
    , r.type 'reactor_type'
    , npp.reactor_model
    , npp.construction_start_at
    , npp.operational_from
    , npp.operational_to
FROM nuclear_power_plants npp
INNER JOIN countries AS c ON npp.country_code = c.`code`
INNER JOIN nuclear_power_plant_status_type AS s ON npp.status_id = s.id
LEFT OUTER JOIN nuclear_reactor_type AS r ON npp.reactor_type_id = r.id
ORDER BY npp.`id`

License

The GeoNuclearData database is made available under the Open Database License whose full text can be found at https://opendatacommons.org/licenses/odbl/1.0/.

Any rights in individual contents of the database are licensed under the Database Contents License whose full text can be found at https://opendatacommons.org/licenses/dbcl/1.0/.

Sources

Countries data is taken from Unicode Common Locale Data Repository.
Nuclear power plants data is taken from WNA/IAEA, but some other sources are used, e.g., Wikipedia.

WNA data is also taken from the�IAEA PRIS reactor database, with more recent information added if available (see here).