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)
Status | Count | Diff |
---|---|---|
Unknown | 1 | |
Planned | 79 | -1 |
Under Construction | 61 | +1 |
Operational | 414 | +3 |
Suspended Operation | 25 | -2 |
Shutdown | 209 | |
Suspended Construction | 6 | |
Cancelled Construction | 4 | |
Never Commissioned | 2 | |
Decommissioning Completed | 3 | 0 |
Total | 804 | +1 |
Tables structure
countries
code
- ISO 3166-1 alpha-2 country codename
- country name in English
nuclear_power_plant_status_type
id
- numeric id keytype
- nuclear power plant status
nuclear_reactor_type
id
- numeric id keytype
- nuclear reactor type acronymdescription
- nuclear reactor type long form
nuclear_power_plants
id
- numeric id keyname
- nuclear power plant namelatitude
- latitude in decimal formatlongitude
- longitude in decimal formatcountry_code
- ISO 3166-1 alpha-2 country codestatus_id
- nuclear power plant status idreactor_type_id
- nuclear reactor type idreactor_model
- nuclear reactor modelconstruction_start_at
- date when nuclear power plant construction was startedoperational_from
- date when nuclear power plant became operational (also known as commercial operation date)operational_to
- date when nuclear power plant was shutdown (also known as permanent shutdown date)capacity
- nuclear power plant capacity (design net capacity in MWe)source
- source of the informationlast_updated_at
- date and time when information was last updatediaea_id
- IAEA PRIS reactor id
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
- there are currently 414 reactors listed as being operational in the GeoNuclearData database, including China Experimental Fast Reactor (CEFR);
- the PRIS database lists only 413 reactors as being operational (China Experimental Fast Reactor (CEFR) is not listed anymore) while the WNA's database has a slightly distinct category named Operable Reactors that probably also includes reactors in Suspended Operation.
Reactors Under Construction
- The number of reactors listed as being under construction in the GeoNuclearData database does not match with either the number of reactors under construction from WNA's database or with the number from the PRIS database:
- In addition to the list of reactors under construction from the PRIS database, the GeoNuclearData database also contains the following reactors (as in WNA's database):
- CAP1400-1 (Shidaowan 1);
- CAP1400-1 (Shidaowan 2);
- Xiapu-2 (Xiapu 2).
Naming
- The GeoNuclearData database usually follows the naming conventions from PRIS for reactors, but in WNA's database some nuclear reactors have completely different names. Some examples are:
- BELARUSIAN-1 and 2 reactors (Belarus) are named in WNA's database Ostrovets 1 and 2, respectively;
- CAP1400-1 and 2 reactors (China) (they were unlisted from PRIS as of 30 April 2021) are named in WNA's database Shidaowan 1 and 2, respectively;
- KANUPP-1, 2, and 3 reactors (Pakistan) are named in WNA's database Karachi 1, 2, and 3.
Coordinates
- the coordinates found in GeoNuclearData database are approximate;
- the original source for the existing coordinates was an old Google Fusion Table dating back to March 2012 (probably sourced from WNA). Since the inception of this database some of the coordinates were manually corrected using Wikipedia/GeoHack and/or satellite imagery from Google Maps;
- the operational Akademik Lomonosov-1 and 2 reactors (Russia) and planned Bohai Shipyard FNPP and Jiaodong Shipyard FNPP (China) reactors are floating nuclear power plants thus the coordinates from this database may not necessarily indicate their current location.
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).